1
2
3
4
5
6
7
8
9
10
11
12
| import Vue from 'vue'
| import App from './App.vue'
| import ElementUI from 'element-ui';
| import 'element-ui/lib/theme-chalk/index.css';
|
| Vue.config.productionTip = false
| Vue.use(ElementUI);
| window.document.title = "首页";
|
| new Vue({
| render: h => h(App),
| }).$mount('#app')
|
|