feat(系统管理-ui优化): 适配新版UI新增系统管理路由页面

This commit is contained in:
fit2cloud-chenyw 2022-08-04 23:32:32 -04:00
parent 0f171466a8
commit d6ba096353
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<template>
<div>外观配置</div>
</template>
<script>
export default {
name: 'AppearanceSetting',
data() {
return {
}
}
}
</script>

View File

@ -0,0 +1,21 @@
<template>
<router-view />
</template>
<script>
export default ({
data() {
return {
}
},
created() {
this.$store.dispatch('app/toggleSideBarHide', false)
},
method: {
}
})
</script>

View File

@ -0,0 +1,14 @@
<template>
<div>数据同步表单</div>
</template>
<script>
export default {
name: 'AppearanceSetting',
data() {
return {
}
}
}
</script>