element-ui-wbi 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +19 -0
- package/element-ui-wbi.common.js +533 -6
- package/element-ui-wbi.css +1 -1
- package/element-ui-wbi.umd.js +544 -10
- package/element-ui-wbi.umd.min.js +1 -1
- package/package.json +2 -2
- package/static/img/iconfont.c3d38205.svg +38 -0
package/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# 基于element-ui封装的vue组件
|
2
|
+
|
3
|
+
## 该插件是基于element-ui的,所以在使用该插件前,请确保您的项目中已安装element-ui,并且项目脚手架是基于vue2的。
|
4
|
+
|
5
|
+
## 安装
|
6
|
+
```
|
7
|
+
npm install element-ui-wbi
|
8
|
+
```
|
9
|
+
|
10
|
+
### 在项目的main.js中导入
|
11
|
+
```
|
12
|
+
import ElementUiWbi from 'element-ui-wbi';
|
13
|
+
import 'element-ui-wbi/element-ui-wbi.css';
|
14
|
+
```
|
15
|
+
|
16
|
+
### 页面中使用
|
17
|
+
|
18
|
+
### 使用文档
|
19
|
+
See [Configuration Reference](https://cli.vuejs.org/config/).
|