- {this.status === 'error' ? (
+ {status === 'error' ? (
- {isValueType(this.errorDescription, 'String')
- ? this.errorDescription
- : () => this.errorDescription}
+ {isValueType(errorDescription, 'String')
+ ? errorDescription
+ : () => errorDescription}
- {this.$slots.errorAction ? (
- this.$slots.errorAction()
+ {$slots.errorAction ? (
+ $slots.errorAction()
) : (
<>
{{
- default: () => this.errorActionDescription,
+ default: () => errorActionDescription,
icon: () => (
),
diff --git a/src/hooks/template/index.ts b/src/hooks/template/index.ts
index 124a40ba..e282e74a 100644
--- a/src/hooks/template/index.ts
+++ b/src/hooks/template/index.ts
@@ -5,3 +5,4 @@ export * from './useTheme'
export * from './useSiderBar'
export * from './useAppNavigation'
export * from './useAppRoot'
+export * from './useBadge'
diff --git a/src/hooks/template/useAppNavigation.ts b/src/hooks/template/useAppNavigation.ts
index 447067e1..985c09c9 100644
--- a/src/hooks/template/useAppNavigation.ts
+++ b/src/hooks/template/useAppNavigation.ts
@@ -76,7 +76,7 @@ export function useAppNavigation() {
if (typeof target === 'number') {
// 校验是否为 NaN
if (isNaN(target)) {
- console.warn(`navigationTo: The ${target} is NaN, expect number.`)
+ console.warn(`[navigationTo]: The ${target} is NaN, expect number.`)
return
}
@@ -86,7 +86,7 @@ export function useAppNavigation() {
// 校验是否超出最大菜单长度
if (target > getMenuOptions.value.length) {
console.warn(
- `navigationTo: The current ${target} exceeds the maximum number of menus.`,
+ `[navigationTo]: The current ${target} exceeds the maximum number of menus.`,
)
return
@@ -116,7 +116,7 @@ export function useAppNavigation() {
if (fd) {
isPushNavigation(fd.path)
} else {
- console.warn(`navigationTo: The path "${target}" is not found.`)
+ console.warn(`[navigationTo]: The path "${target}" is not found.`)
}
} else {
isPushNavigation(target.fullPath)
diff --git a/src/hooks/template/useBadge.ts b/src/hooks/template/useBadge.ts
new file mode 100644
index 00000000..a60984b9
--- /dev/null
+++ b/src/hooks/template/useBadge.ts
@@ -0,0 +1,22 @@
+import { useMenuGetters } from '@/store'
+
+export function useBadge() {
+ const { getMenuOptions } = useMenuGetters()
+
+ const hidden = () => {}
+
+ const show = () => {}
+
+ const toggle = () => {}
+
+ const updateLabel = () => {}
+
+ return {
+ hidden,
+ show,
+ toggle,
+ updateLabel,
+ }
+}
+
+export type UseBadgeReturnType = ReturnType
diff --git a/src/hooks/template/useSiderBar.ts b/src/hooks/template/useSiderBar.ts
index 6a16eb94..7b321367 100644
--- a/src/hooks/template/useSiderBar.ts
+++ b/src/hooks/template/useSiderBar.ts
@@ -170,6 +170,10 @@ export function useSiderBar() {
const close = (target: CloseMenuTag) => {
const normal = normalMenuTagOption(target, 'close')
+ if (getMenuTagOptions.value.length === 1) {
+ return
+ }
+
if (normal) {
const { index, option } = normal
diff --git a/src/router/type.ts b/src/router/type.ts
index cfdefa60..79b5d43a 100644
--- a/src/router/type.ts
+++ b/src/router/type.ts
@@ -11,7 +11,7 @@ export type Component =
| (() => Promise)
export interface AppMenuExtraOptions {
- extraLabel?: string
+ extraLabel?: string | number
extraIcon?: string | VNode
extraType?: TagProps['type']
}
diff --git a/src/styles/naive.scss b/src/styles/naive.scss
index 1e830510..0b4c57d4 100644
--- a/src/styles/naive.scss
+++ b/src/styles/naive.scss
@@ -21,3 +21,14 @@
display: flex;
gap: 0 6px;
}
+
+.r-menu--app {
+ // 手动设置 label 宽度,兼容 extra 的情况
+ .n-menu-item-content-header .n-ellipsis {
+ width: calc(100% - 41px);
+ }
+
+ .n-menu-item-content-header__extra {
+ margin-right: 8px;
+ }
+}
diff --git a/src/views/dashboard/index.tsx b/src/views/dashboard/index.tsx
index c250d42a..9de03fae 100644
--- a/src/views/dashboard/index.tsx
+++ b/src/views/dashboard/index.tsx
@@ -66,16 +66,16 @@ const Dashboard = defineComponent({
value: 'Vue3.x',
},
{
- label: 'Vite4.0',
- value: 'Vite4.0',
+ label: 'Vite5.x',
+ value: 'Vite5.x',
},
{
label: 'Pinia',
value: 'Pinia',
},
{
- label: 'TSX',
- value: 'TSX',
+ label: 'TS(X)',
+ value: 'TS(X)',
},
]