注:为了方便自己,因为没记住。但是很简单()
根据自己的情况选择
1、vue3自动安装
2、vue2自动安装
3、手动安装
这里我选择的是2
(这里大意了,输错了一次,)
这里面有,说明下载成功了
在 main.js 中写入以下内容:
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import App from './App.vue';
Vue.use(ElementUI);
new Vue({
el: '#app',
render: h => h(App)
});
然后就可以在饿了么组件里面找自己想要的组件了
复制代码
成功按钮
找到图片,复制代码。
我找的是这个
el-icon-user-solid
加在按钮上,就有了如下效果
1、安装 babel-plugin-componen
npm install babel-plugin-component -D
2、将 .babelrc 修改为:
{
presets: [["es2015", { "modules": false }]],
plugins: [
[
"component",
{
libraryName: "element-ui",
styleLibraryName: "theme-chalk"
}
]
]
}
3、引入自己需要的组件
import Vue from 'vue';
import { Button, Select } from 'element-ui';
import App from './App.vue';
Vue.component(Button.name, Button);
Vue.component(Select.name, Select);
/* 或写为
* Vue.use(Button)
* Vue.use(Select)
*/
new Vue({
el: '#app',
render: h => h(App)
});
完整引入,请看官网 传送门
其中,这些要这样注册
Vue.prototype.$loading = Loading.service;
Vue.prototype.$msgbox = MessageBox;
Vue.prototype.$alert = MessageBox.alert;
Vue.prototype.$confirm = MessageBox.confirm;
Vue.prototype.$prompt = MessageBox.prompt;
Vue.prototype.$notify = Notification;
Vue.prototype.$message = Message;
(我就想水点经验(bushi),为了加强自己的记忆)