13 lines
380 B
JavaScript
13 lines
380 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import 'bootstrap/dist/css/bootstrap.min.css'
|
|
import installElementPlus from './plugins/element'
|
|
import ElementPlus from 'element-plus'
|
|
// import 'element-plus/lib/theme-chalk/index.css'
|
|
import router from './router'
|
|
|
|
const app = createApp(App)
|
|
installElementPlus(app)
|
|
app.use(ElementPlus)
|
|
app.use(router).mount('#app')
|