Skip to content

Commit 88a856f

Browse files
committed
release 1.3.19
1 parent bea3f8d commit 88a856f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

dist/viewuiplus.min.esm.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10694,7 +10694,9 @@ const _sfc_main$1U = {
1069410694
},
1069510695
currentValue() {
1069610696
if (this.CheckboxGroupInstance) {
10697-
return this.CheckboxGroupInstance.modelValue.indexOf(this.label) >= 0;
10697+
let modelValue = this.CheckboxGroupInstance.modelValue;
10698+
modelValue = Array.isArray(modelValue) ? modelValue : [];
10699+
return modelValue.indexOf(this.label) >= 0;
1069810700
} else {
1069910701
return this.modelValue === this.trueValue;
1070010702
}
@@ -38620,7 +38622,7 @@ var style = {
3862038622
}
3862138623
};
3862238624
const name = "view-ui-plus";
38623-
const version$1 = "1.3.18";
38625+
const version$1 = "1.3.19";
3862438626
const title = "ViewUIPlus";
3862538627
const description = "A high quality UI components Library with Vue.js 3";
3862638628
const homepage = "http://www.iviewui.com";

dist/viewuiplus.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "view-ui-plus",
3-
"version": "1.3.18",
3+
"version": "1.3.19",
44
"title": "ViewUIPlus",
55
"description": "A high quality UI components Library with Vue.js 3",
66
"homepage": "http://www.iviewui.com",

0 commit comments

Comments
 (0)