xyyd-fatfox/src/useRouterStore.ts

25 lines
513 B
TypeScript
Raw Normal View History

2024-09-09 17:53:07 +08:00
import { defineStore } from 'pinia'
import { ref } from 'vue'
export type WidgetStr = 'ai' | 'calendar'
export type GlobalStr = 'search' | 'block' | 'adder'
export type SettingStr =
| 'user'
| 'background'
| 'block'
| 'search'
| 'time'
| 'sider'
| 'ai'
| 'dock'
| 'reset'
| 'fallback'
export type RouteStr = '' | `widget-${WidgetStr}` | `global-${GlobalStr}` | `settings-${SettingStr}`
export default defineStore('router', () => {
const path = ref<RouteStr>('')
return {
path
}
})