您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

10 行
212 B

2 年前
import { createApp } from 'vue'
import App from './App.vue'
// @ts-ignore
import router from './router/index'
// @ts-ignore
import store from './store/index'
createApp(App).use(router).use(store).mount('#app')