1234567891011121314151617 |
- import { createApp } from 'vue'
- import App from './App'
- import router from '../router/index-admin'
- import '../style/index.css'
- import 'normalize.css'
- import 'element-plus/dist/index.css'
- // import { state } from '@/state'
- const app = createApp(App)
- // import Vconsole from 'vconsole'
- // const vconsole = new Vconsole()
- app.use(router)
- app.mount('#app')
|