Files
app-govern/pages/mine/policy.vue

25 lines
389 B
Vue
Raw Normal View History

2023-01-12 10:03:25 +08:00
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='index'>
隐私政策
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.index {
2023-02-20 14:19:28 +08:00
padding: 20rpx;
2023-01-12 10:03:25 +08:00
}
</style>