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