@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.
- package/lib/bi-crud.esm.js +6 -0
- package/lib/bi-crud.umd.js +6 -0
- package/package.json +1 -1
package/lib/bi-crud.esm.js
CHANGED
|
@@ -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
|
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -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
|
|