Files
cdTestPlant3/cdTMP/src/store/index.js

14 lines
467 B
JavaScript
Raw Normal View History

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-08 21:09:28 +08:00
import useTabBarStore from "./modules/tab-bar"
// ma组件新增
import useFormStore from "./modules/form"
import useKeepAliveStore from "./modules/keepAlive"
import useTagStore from "./modules/tag"
2023-06-04 20:01:58 +08:00
const pinia = createPinia()
2023-06-08 21:09:28 +08:00
export { useUserStore, useAppStore, useTabBarStore, useFormStore, useKeepAliveStore, useTagStore }
2023-06-04 20:01:58 +08:00
export default pinia