| | |
| | | import { createApp } from 'vue' |
| | | import ElementPlus from 'element-plus' |
| | | import 'element-plus/dist/index.css' |
| | | import 'element-plus/dist/index.css' |
| | | import Vant from 'vant' |
| | | import 'vant/lib/index.css' |
| | | import router from './router'; |
| | | import './style.css' |
| | | import App from './App.vue' |
| | | |
| | | createApp(App).use(router).use(ElementPlus).mount('#app') |
| | | // 如果需要在手机平板上打开控制台,安装一个这个 |
| | | // import VConsole from 'vconsole' |
| | | // const vConsole = new VConsole() |
| | | // console.log('vConsole is ready.') |
| | | |
| | | createApp(App).use(router).use(ElementPlus).use(Vant).mount('#app') |