main.ts 358 B

1234567891011121314151617
  1. import { createApp } from 'vue'
  2. import App from './App'
  3. import router from '../router/index-admin'
  4. import '../style/index.css'
  5. import 'normalize.css'
  6. import 'element-plus/dist/index.css'
  7. // import { state } from '@/state'
  8. const app = createApp(App)
  9. // import Vconsole from 'vconsole'
  10. // const vconsole = new Vconsole()
  11. app.use(router)
  12. app.mount('#app')