10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
|
|
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;
|