add 添加设置页面
This commit is contained in:
parent
6058c7a93d
commit
63ee4e7cd0
@ -49,7 +49,7 @@ import {
|
|||||||
</el-menu-item-group>
|
</el-menu-item-group>
|
||||||
</el-sub-menu>
|
</el-sub-menu>
|
||||||
|
|
||||||
<el-menu-item index="3">
|
<el-menu-item index="/settings">
|
||||||
<el-icon>
|
<el-icon>
|
||||||
<el-icon><Operation /></el-icon>
|
<el-icon><Operation /></el-icon>
|
||||||
</el-icon>
|
</el-icon>
|
||||||
|
11
view/src/page/settings.vue
Normal file
11
view/src/page/settings.vue
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<script setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>设置</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
|
||||||
|
</style>
|
@ -29,6 +29,11 @@ const routes = [
|
|||||||
path: "addSubscribe",
|
path: "addSubscribe",
|
||||||
name: "addSubscribe",
|
name: "addSubscribe",
|
||||||
component: () => import ("../page/subscribe/addSubscribe.vue")
|
component: () => import ("../page/subscribe/addSubscribe.vue")
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "settings",
|
||||||
|
name: "settings",
|
||||||
|
component:() => import("../page/settings.vue")
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
component: () => import("../page/index.vue"),
|
component: () => import("../page/index.vue"),
|
||||||
|
Loading…
Reference in New Issue
Block a user