import { createApp } from 'vue'; import { createRouter, createWebHistory } from 'vue-router'; import { createPinia } from 'pinia'; import App from './App.vue'; import { routes } from '@/.frame/routes'; // Create Vue app const app = createApp(App); // Create router const router = createRouter({ history: createWebHistory(), routes, }); // Create store const pinia = createPinia(); // Install plugins app.use(router); app.use(pinia); // Mount app app.mount('#app');