Files
medical-mall/layouts/admin/state.uts
2026-01-30 19:00:31 +08:00

11 lines
331 B
Plaintext

import { ref } from 'vue'
import type { TabItem } from './types.uts'
export const tabs = ref<TabItem[]>([
{ id: 'home', title: '首页', path: '/pages/mall/admin/homePage/index' }
])
export const activeTabId = ref<string>('home')
export const isCollapsed = ref<boolean>(false)
export const hasNotification = ref<boolean>(true)