main.ts 271 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import { createApp } from 'vue' import { createPinia } from 'pinia' import App from './App.vue' import router from './router' // 创建应用实例 const app = createApp(App) const pinia = createPinia() app.use(pinia) app.use(router) // 挂载应用 app.mount('#app')