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

25 lines
377 B
Vue
Raw Permalink Normal View History

2023-02-09 08:50:01 +08:00
<template>
<Rc-page :loading='loading'>
<view slot='body'>
<view class='index'>
2023-03-09 13:50:45 +08:00
2023-02-09 08:50:01 +08:00
</view>
</view>
</Rc-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-02-09 08:50:01 +08:00
}
</style>