UnisKB/ui/src/stores/index.ts

11 lines
201 B
TypeScript
Raw Normal View History

2023-10-19 10:18:45 +00:00
import { createPinia } from 'pinia'
const store = createPinia()
export { store }
import useUserStore from './modules/user'
2023-09-15 09:40:35 +00:00
2023-10-19 10:18:45 +00:00
const useStore = () => ({
user: useUserStore()
})
2023-09-15 09:40:35 +00:00
2023-10-19 10:18:45 +00:00
export default useStore