【Vue】Vue 结合 Element UI [ 编程杂谈 ]
大数据男孩 文章 正文
明妃
{{nature("2022-08-14 17:23:20")}}更新Element UI 说明
Element UI 是饿了么团队基于 Vue 开发的前端框架,使用方便 简单
官方文档:https://element.eleme.cn/#/zh-CN/component
推荐使用 npm
的方式安装,它能更好地
和 webpack 打包工具配合使用
。
npm i element-ui -S
引入 Element
操作 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); # 使用 ElementUI
new Vue({
el: '#app',
render: h => h(App)
});
按照需要引入
借助 babel-plugin-component
我们可以只引入需要的组件
,以达到减小项目体积
的目的。
npm install babel-plugin-component -D
修改 .babelrc
文件
{
"presets": [["es2015", { "modules": false }]],
"plugins": [
[
"component",
{
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}
]
]
}
接下来就能安装需要引入组件
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)
});
官网有个完整单独组件引入 https://element.eleme.cn/#/zh-CN/component/quickstart
现在基于 Element
的环境开发搭建完毕
{{nature('2020-01-02 16:47:07')}} {{format('12641')}}人已阅读
{{nature('2019-12-11 20:43:10')}} {{format('9527')}}人已阅读
{{nature('2019-12-26 17:20:52')}} {{format('7573')}}人已阅读
{{nature('2019-12-26 16:03:55')}} {{format('5017')}}人已阅读
目录
标签云
一言
评论 0
{{userInfo.data?.nickname}}
{{userInfo.data?.email}}