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.

main.js 277B

123456789101112131415
  1. import Vue from 'vue';
  2. import EvaIcons from 'vue-eva-icons';
  3. import App from './App.vue';
  4. import router from './router';
  5. import store from './store';
  6. Vue.use(EvaIcons);
  7. Vue.config.productionTip = false;
  8. new Vue({
  9. render: h => h(App),
  10. router,
  11. store,
  12. }).$mount('#app');