Merge pull request #2800 from dataease/pr@dev@feat_ui_perf_page

feat(系统管理-ui优化): 适配新版UI新增系统管理路由页面
This commit is contained in:
fit2cloud-chenyw 2022-08-05 11:33:17 +08:00 committed by GitHub
commit 77e587bcd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>