mirror of
https://github.com/kuaifan/dootask.git
synced 2026-02-28 04:40:37 +00:00
23 lines
400 B
Vue
23 lines
400 B
Vue
<template>
|
|
<div class="setting-item submit">
|
|
<IFrame class="privacy-iframe" :src="$A.apiUrl('../privacy.html')"/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.privacy-iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
</style>
|
|
<script>
|
|
import IFrame from "../components/IFrame";
|
|
export default {
|
|
components: {IFrame}
|
|
}
|
|
</script>
|