2023-06-04 20:01:58 +08:00
|
|
|
import { createPinia } from "pinia"
|
2023-06-05 21:02:25 +08:00
|
|
|
import useUserStore from "./modules/user"
|
|
|
|
|
import useAppStore from "./modules/app"
|
2023-06-04 20:01:58 +08:00
|
|
|
|
|
|
|
|
const pinia = createPinia()
|
|
|
|
|
|
2023-06-05 21:02:25 +08:00
|
|
|
export { useUserStore, useAppStore }
|
2023-06-04 20:01:58 +08:00
|
|
|
export default pinia
|