main.ts 228 B

1234567891011
  1. import { createApp } from 'vue';
  2. import App from './App.vue';
  3. import router from './router';
  4. import { createPinia } from 'pinia';
  5. export const app = createApp(App);
  6. app.use(router);
  7. app.use(createPinia());
  8. app.mount('#app');