Files
dvcp_v2_wxcp_app/src/project/xicheng/AppMerchantManage/AppMerchantManage.vue
2022-07-01 15:11:11 +08:00

35 lines
432 B
Vue

<template>
<div class="AppMerchantManage">
</div>
</template>
<script>
import {mapState} from 'vuex'
export default {
name: 'AppMerchantManage',
appName: '商户管理',
data() {
return {
}
},
computed: {...mapState(['user'])},
created() {
},
onShow() {
document.title = "商户管理"
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.AppMerchantManage {
}
</style>