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
418 B
24 lines
418 B
/*
|
|
* @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');
|