mirror of
https://github.com/Kisechan/Mainpage.git
synced 2025-07-10 23:27:18 +00:00
revise css
This commit is contained in:
10
src/main.js
10
src/main.js
@ -1,10 +1,10 @@
|
||||
import { createApp } from 'vue'
|
||||
import ElementPlus from 'element-plus'
|
||||
import 'element-plus/dist/index.css'
|
||||
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(ElementPlus)
|
||||
app.mount('#app')
|
||||
app.use(router)
|
||||
app.use(router)
|
||||
app.use(ElementPlus) // 使用 Element Plus
|
||||
app.mount('#app')
|
Reference in New Issue
Block a user