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.
24 lines
560 B
24 lines
560 B
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import * as webIndex from '@/components/webindex'
|
|
import Menus from 'vue3-menus'
|
|
import ElementPlus from 'element-plus'
|
|
|
|
import 'ag-grid-community/styles/ag-grid.css'
|
|
import 'ag-grid-community/styles/ag-theme-alpine.css'
|
|
import 'element-plus/dist/index.css'
|
|
import './main.less'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(ElementPlus)
|
|
//@ts-ignore
|
|
app.use(Menus)
|
|
app.use(router)
|
|
app.use(webIndex)
|
|
|
|
app.mount('#app')
|
|
|