forked from gzydong/LumenIM
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlayout.vue
41 lines (39 loc) · 820 Bytes
/
layout.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<script setup>
import SubViewLayout from '@/layout/SubViewLayout.vue'
import { Tool, Protect, Remind, LinkThree, User } from '@icon-park/vue-next'
const menus = [
{
name: '系统配置',
path: '/settings/config',
icon: Tool
},
// {
// name: '个人中心',
// path: '/settings/detail',
// icon: User
// },
// {
// name: '安全设置',
// path: '/settings/security',
// icon: Protect
// },
{
name: '个性设置',
path: '/settings/personalize',
icon: Remind
},
// {
// name: '绑定设置',
// path: '/settings/binding',
// icon: LinkThree
// },
// {
// name: '通知设置',
// path: '/settings/notification',
// icon: Remind
// },
]
</script>
<template>
<SubViewLayout title="我的设置" :menus="menus" />
</template>