matrix_components 2.0.320 → 2.0.322

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 CHANGED
@@ -1,6 +1,20 @@
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
+
11
+ ```
12
+ version:2.0.321
13
+ 2025-11-19 09:49:26
14
+ 更新日志:
15
+ 1.NsOffice组件边距修改
16
+ ```
17
+
4
18
  ```
5
19
  version:2.0.320
6
20
  2025-11-18 09:53:06
@@ -431,6 +445,7 @@ app.provide('btnsPermission', btnsPermission)
431
445
  app.use(NsComponents)
432
446
 
433
447
  // 2. 长度限制(默认50位):v-length[.number][="100"], 如:v-length.number="11" / v-length
448
+ // .number 修饰符会限制只能输入数字(通过输入事件过滤非数字字符)
434
449
  <el-input placeholder="请输入手机号" v-length.number="11"/>
435
450
  <el-input placeholder="请输入用户名" v-length />
436
451