vue-cli3.0安装element-ui组件及按需引入element-ui组件

在之前最好是备份APP.JS里面的东西 因为不知道为什么会改变APP.JS里面的东西

1,在 命令行输入   vue add element


2,How do you want to import Element? -->选择 Import on demand (关键)按需引入

❯ Fully import  全局引入


Choose the locale you want to load–>选择 zh-CN


3, 会自动 写入不用管

src/plugins/element.js

    babel.config.js

    jsons.json

    package-lock.json

    package.json

    src/App.vue

    src/main.js

4,不知道为什么会改变APP.JS里面的东西

会变成下面这样不知道为什么


   

        If Element is successfully added to this project, you'll see an

        below

      el-button

   

import HelloWorldfrom './components/HelloWorld.vue'

export default {

name:'app',

  components: {

HelloWorld

}

}

#app {

font-family:'Avenir', Helvetica, Arial, sans-serif;

  -webkit-font-smoothing:antialiased;

  -moz-osx-font-smoothing:grayscale;

  text-align:center;

  color:#2c3e50;

  margin-top:60px;

}

我项目正确的