mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +00:00
36 lines
948 B
Vue
36 lines
948 B
Vue
<template>
|
|
<div>
|
|
<SidebarMenu :menuItems="menuItems" />
|
|
<div class="content">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import SidebarMenu from './webui/Nav.vue';
|
|
|
|
export default {
|
|
components: {
|
|
SidebarMenu
|
|
},
|
|
data() {
|
|
return {
|
|
menuItems: [
|
|
{ value: 'item1', icon: 'dashboard', label: '基础信息', route: '/dashboard/basic-info' },
|
|
{ value: 'item3', icon: 'play-circle', label: '网络配置', route: '/dashboard/network-config' },
|
|
{ value: 'item4', icon: 'play-circle', label: '其余配置', route: '/dashboard/other-config' },
|
|
{ value: 'item5', icon: 'edit-1', label: '日志查看', route: '/dashboard/log-view' },
|
|
{ value: 'item6', icon: 'info-circle', label: '关于我们', route: '/dashboard/about-us' }
|
|
]
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.content {
|
|
margin-left: 200px; /* 根据侧边栏宽度调整 */
|
|
padding: 20px;
|
|
}
|
|
</style> |