Files
app-govern/pages/mine/subordinate.vue
2023-03-09 13:50:45 +08:00

25 lines
377 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>