Skip to content

Commit

Permalink
release 1.3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
icarusion committed Aug 7, 2024
1 parent bea3f8d commit 88a856f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions dist/viewuiplus.min.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -10694,7 +10694,9 @@ const _sfc_main$1U = {
},
currentValue() {
if (this.CheckboxGroupInstance) {
return this.CheckboxGroupInstance.modelValue.indexOf(this.label) >= 0;
let modelValue = this.CheckboxGroupInstance.modelValue;
modelValue = Array.isArray(modelValue) ? modelValue : [];
return modelValue.indexOf(this.label) >= 0;
} else {
return this.modelValue === this.trueValue;
}
Expand Down Expand Up @@ -38620,7 +38622,7 @@ var style = {
}
};
const name = "view-ui-plus";
const version$1 = "1.3.18";
const version$1 = "1.3.19";
const title = "ViewUIPlus";
const description = "A high quality UI components Library with Vue.js 3";
const homepage = "http://www.iviewui.com";
Expand Down
4 changes: 2 additions & 2 deletions dist/viewuiplus.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "view-ui-plus",
"version": "1.3.18",
"version": "1.3.19",
"title": "ViewUIPlus",
"description": "A high quality UI components Library with Vue.js 3",
"homepage": "http://www.iviewui.com",
Expand Down

0 comments on commit 88a856f

Please sign in to comment.