11 lines
331 B
Plaintext
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)
|