liudong
2024-07-26 2a05790d103bf5b3bb099629cdb471ab33eaf89d
1
2
3
4
5
6
7
8
9
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;