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