Files
cdTestPlant3/cdtestplant/src/store/index.ts

10 lines
269 B
TypeScript
Raw Normal View History

2023-06-04 20:01:58 +08:00
import { createPinia } from 'pinia'
import useAppStore from './modules/app'
import useUserStore from './modules/user'
import useTabBarStore from './modules/tab-bar'
const pinia = createPinia()
export { useAppStore, useUserStore, useTabBarStore }
export default pinia