matrix_components 2.0.321 → 2.0.323
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist/matrix_components.css +1 -1
- package/dist/matrix_components.js +13387 -13000
- package/dist/matrix_components.umd.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# **组件库2.0**
|
|
2
2
|
组件使用示例参考dist/ComponentDemo
|
|
3
3
|
|
|
4
|
+
```
|
|
5
|
+
version:2.0.322
|
|
6
|
+
2025-11-24 09:20:37
|
|
7
|
+
更新日志:
|
|
8
|
+
1.添加e post, get, put, del, download, downLoadLocalFile 等axios请求方法
|
|
9
|
+
```
|
|
10
|
+
|
|
4
11
|
```
|
|
5
12
|
version:2.0.321
|
|
6
13
|
2025-11-19 09:49:26
|
|
@@ -438,6 +445,7 @@ app.provide('btnsPermission', btnsPermission)
|
|
|
438
445
|
app.use(NsComponents)
|
|
439
446
|
|
|
440
447
|
// 2. 长度限制(默认50位):v-length[.number][="100"], 如:v-length.number="11" / v-length
|
|
448
|
+
// .number 修饰符会限制只能输入数字(通过输入事件过滤非数字字符)
|
|
441
449
|
<el-input placeholder="请输入手机号" v-length.number="11"/>
|
|
442
450
|
<el-input placeholder="请输入用户名" v-length />
|
|
443
451
|
|