/* * @Author: ch * @Date: 2022-05-17 21:23:11 * @LastEditors: ch * @LastEditTime: 2022-07-20 17:57:02 * @Description: file content */ import '@/icons'; import usePlugins from '@/plugins'; import router from '@/router'; import store from '@/store'; import { createApp } from 'vue'; import App from './App.vue'; const app = createApp(App); app.use(store); app.use(router); usePlugins(app); app.mount('#app');