index.ts 276 B

123456789
  1. import { createPinia } from 'pinia';
  2. import useAppStore from './modules/app';
  3. import useUserStore from './modules/user';
  4. import useTabBarStore from './modules/tab-bar';
  5. const pinia = createPinia();
  6. export { useAppStore, useUserStore, useTabBarStore };
  7. export default pinia;