| | |
| | | import { createApp } from 'vue' |
| | | import { createPinia } from 'pinia' |
| | | import ElementPlus from 'element-plus' |
| | | import 'element-plus/dist/index.css' |
| | | import * as ElementPlusIconsVue from '@element-plus/icons-vue' |
| | | import App from './App.vue' |
| | | import router from './router' |
| | | import './style.css' |
| | | |
| | | // Bootstrap CSS |
| | | import 'bootstrap/dist/css/bootstrap.min.css' |
| | | import 'bootstrap-icons/font/bootstrap-icons.css' |
| | | import 'bootstrap/dist/js/bootstrap.bundle.min.js' |
| | | |
| | | const app = createApp(App) |
| | | |
| | | // 注册所有 Element Plus 图标 |
| | | for (const [key, component] of Object.entries(ElementPlusIconsVue)) { |
| | | app.component(key, component) |
| | | } |
| | | |
| | | app.use(createPinia()) |
| | | app.use(router) |
| | | app.use(ElementPlus) |
| | | |
| | | app.mount('#app') |