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

25 lines
384 B
Vue

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