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.

22 lines
437 B

2 years ago
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
2 years ago
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import VueClipBoard from 'vue-clipboard2'
2 years ago
import axios from 'axios'
2 years ago
Vue.config.productionTip = false
2 years ago
Vue.prototype.$axios = axios
Vue.use(ElementUI);
Vue.use(VueClipBoard);
2 years ago
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')