yinbangzhong
2024-07-27 588048abd720ff3fcd69aa9322b632e50dd3a651
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;