You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
452 B
15 lines
452 B
2 months ago
|
import { createApp } from 'vue'
|
||
|
import App from './App.vue'
|
||
|
import router from '@/router'
|
||
|
import '@/styles/index.scss'
|
||
|
import ElementPlus from 'element-plus';
|
||
|
import 'element-plus/dist/index.css'; // 引入 Element Plus 的样式文件
|
||
|
import '@/utils/rem.js'
|
||
|
import DataVVue3 from '@kjgl77/datav-vue3'
|
||
|
import pinia from '@/store/index'
|
||
|
const app = createApp(App)
|
||
|
app.use(ElementPlus)
|
||
|
app.use(pinia)
|
||
|
app.use(DataVVue3)
|
||
|
app.use(router)
|
||
|
app.mount('#app')
|