Commit 2501c976 by pangchong

feat: 隐藏其他功能

parent 604cc0c7
......@@ -21,19 +21,19 @@ export default {
path: '/events',
component: () => import(/* webpackChunkName: "Events" */ '@/views/remote/events/index.vue'),
name: 'Events',
meta: { title: '进行中的事件', locale: 'menu.remote.events', hideInMenu: false }
meta: { title: '进行中的事件', locale: 'menu.remote.events', hideInMenu: true }
},
{
path: '/experience',
component: () => import(/* webpackChunkName: "Experience" */ '@/views/remote/experience/index.vue'),
name: 'Experience',
meta: { title: '经验库', locale: 'menu.remote.experience', hideInMenu: false }
meta: { title: '经验库', locale: 'menu.remote.experience', hideInMenu: true }
},
{
path: '/resource',
component: () => import(/* webpackChunkName: "Resource" */ '@/views/remote/resource/index.vue'),
name: 'Resource',
meta: { title: '资源库', locale: 'menu.remote.resource', hideInMenu: false }
meta: { title: '资源库', locale: 'menu.remote.resource', hideInMenu: true }
}
]
}
......@@ -43,7 +43,7 @@ interface Props {
showGroup?: boolean
}
const ps = withDefaults(defineProps<Props>(), {
showGroup: true
showGroup: false
})
//是否显示群组列表
const getShowGroup = computed(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment