VUE -element UI 学习整理 一 引入

 

一 入口

1 默认index.html

   主页,项目入口



  
    
    
    gudianxiaoshuo
  
  
    

 

2  APP.vue

   根组件






 

3 main.js

  入口文件

  引入 elementUI

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'

import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);

Vue.config.productionTip = false


/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: ''
})

 

 

 

 

 

你可能感兴趣的:(VUE)