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.

28 lines
774 B

/*
* @Author: your name
* @Date: 2022-03-09 14:13:45
* @LastEditTime: 2022-03-09 15:55:49
* @LastEditors: your name
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /yywc-evaluation/src/main.js
*/
import Vue from 'vue'
import App from './App.vue'
import router from "@/permission";
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI, {size: 'small'});
import '@/styles/index.less';
import store from "@/store";
import mixins from "@/mixins";
Vue.use(mixins);
import selfUi from "@/components/index.js";
Vue.use(selfUi);
Vue.config.productionTip = false
new Vue({
render: h => h(App),
router,
store
}).$mount('#app')