瑜璟缘官网
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
352 B

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. import ElementUI from 'element-ui'; //引入js
  6. import 'element-ui/lib/theme-chalk/index.css';//引入css
  7. Vue.config.productionTip = false
  8. Vue.use(ElementUI);
  9. new Vue({
  10. router,
  11. store,
  12. render: h => h(App)
  13. }).$mount('#app')