# 完整引入
import Vue from 'vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(Element)
import VueElementProComponents from 'vue-element-pro-components'
import 'vue-element-pro-components/lib/theme/index.css'
Vue.use(VueElementProComponents)
new Vue({
el: '#app',
render: (h) => h(App)
})
以上代码便完成了 VueElementProComponents 的引入。需要注意的是,样式文件需要单独引入。
# 按需引入
借助 babel-plugin-import (opens new window),我们可以只引入需要的组件,以达到减小项目体积的目的。
首先,安装 babel-plugin-import
# yarn 方式安装
yarn add babel-plugin-import -D
# npm 方式安装
npm install babel-plugin-import -D
然后,将 .babelrc
或 babel.config
修改为:
{
...
plugins: [
[
"import",
{
libraryName: "vue-element-pro-components",
libraryDirectory: "lib",
style: (name, file) => {
const libDirIndex = name.lastIndexOf("/");
const libDir = name.substring(0, libDirIndex);
const fileName = name.substr(libDirIndex + 1);
return `${libDir}/theme/${fileName}.css`;
},
},
],
],
}
接下来,如果你只希望引入部分组件,比如 Dialog
和 Form
,那么需要在main.js
中写入以下内容:
import Vue from 'vue'
import Element from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(Element)
import { Dialog, Form } from 'vue-element-pro-components'
Vue.use(Dialog)
Vue.use(Form)
/* 或写为
* Vue.component(Dialog.name,Dialog)
* Vue.component(Form.name,Form)
*/
new Vue({
el: '#app',
render: (h) => h(App)
})
或者全部引入
import Vue from 'vue'
import Element from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(Element)
import {
Dialog,
Form,
Pagination,
Search,
Table,
AdvancedSearch,
Drawer
} from 'vue-element-pro-components'
Vue.use(Dialog)
Vue.use(Form)
Vue.use(Pagination)
Vue.use(Search)
Vue.use(Table)
Vue.use(AdvancedSearch)
Vue.use(Drawer)
# 开始使用
至此,现在就可以编写代码了。各个组件的使用方法请参阅它们各自的文档。