Files
app-govern/pages/mine/subordinate.vue
2023-02-20 14:19:28 +08:00

24 lines
360 B
Vue

<template>
<Rc-page :loading='loading'>
<view slot='body'>
<view class='index'>
</view>
</view>
</Rc-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.index {
padding: 20rpx;
}
</style>