@epie/bi-crud 2.0.8 → 2.0.9

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.
@@ -15730,6 +15730,12 @@ function parseNode(vnode, options) {
15730
15730
  props["onUpdate:modelValue"] = function (val) {
15731
15731
  scope[prop] = val;
15732
15732
  };
15733
+ }
15734
+
15735
+ if (vnode.name === "el-select" && props.clearable) {
15736
+ props["onClear"] = function () {
15737
+ scope[prop] = undefined;
15738
+ };
15733
15739
  } // 组件实例渲染
15734
15740
 
15735
15741
 
@@ -15733,6 +15733,12 @@
15733
15733
  props["onUpdate:modelValue"] = function (val) {
15734
15734
  scope[prop] = val;
15735
15735
  };
15736
+ }
15737
+
15738
+ if (vnode.name === "el-select" && props.clearable) {
15739
+ props["onClear"] = function () {
15740
+ scope[prop] = undefined;
15741
+ };
15736
15742
  } // 组件实例渲染
15737
15743
 
15738
15744
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@epie/bi-crud",
3
3
  "simpleName": "bi-crud",
4
- "version": "2.0.8",
4
+ "version": "2.0.9",
5
5
  "private": false,
6
6
  "main": "lib/bi-crud.umd.js",
7
7
  "module": "lib/bi-crud.esm.js",