feat: refactor sidebar management and routing metadata
All checks were successful
CI/CD Pipeline / playwright (push) Successful in 2m38s
CI/CD Pipeline / build-and-deploy (push) Successful in 4m39s

This commit is contained in:
严浩
2025-10-22 14:38:31 +08:00
parent e95d883c23
commit 917301dea6
10 changed files with 164 additions and 124 deletions

View File

@@ -2,7 +2,7 @@
definePage({
meta: {
title: '首页',
hidden: false,
hideInMenu: false,
},
});
</script>

View File

@@ -1,4 +1,4 @@
<script setup lang="ts">
definePage({ meta: { title: '示例演示' } });
definePage({ meta: { title: '示例演示', link: false } });
</script>
<template><div>此页面文件仅用于在侧边栏菜单中显示示例演示分组标题</div></template>