mirror of
https://github.com/Kisechan/Mainpage.git
synced 2025-07-09 22:57:17 +00:00
10 lines
324 B
JavaScript
10 lines
324 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import ElementPlus from 'element-plus' // 引入 Element Plus
|
|
import 'element-plus/dist/index.css' // 引入 Element Plus 样式
|
|
|
|
const app = createApp(App)
|
|
app.use(router)
|
|
app.use(ElementPlus) // 使用 Element Plus
|
|
app.mount('#app') |