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

24 lines
360 B
Vue
Raw Normal View History

2023-02-09 08:50:01 +08:00
<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: 34rpx;
}
</style>