vue-devui 1.0.1 → 1.0.2
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 +1 -0
- package/mention/index.es.js +14 -7
- package/mention/index.umd.js +9 -9
- package/modal/style.css +1 -1
- package/package.json +1 -1
- package/pagination/index.es.js +2 -2
- package/pagination/index.umd.js +3 -3
- package/select/index.es.js +2 -2
- package/select/index.umd.js +3 -3
- package/style.css +1 -1
- package/tabs/index.es.js +42 -3
- package/tabs/index.umd.js +1 -1
- package/tabs/style.css +1 -1
- package/time-select/index.es.js +7 -4
- package/time-select/index.umd.js +3 -3
- package/vue-devui.es.js +63 -14
- package/vue-devui.umd.js +10 -10
package/select/index.es.js
CHANGED
|
@@ -7835,7 +7835,7 @@ function useSelect(props, selectRef, ctx, focus, blur, isSelectFocus, t) {
|
|
|
7835
7835
|
const newOption = {
|
|
7836
7836
|
name: value,
|
|
7837
7837
|
value,
|
|
7838
|
-
_checked:
|
|
7838
|
+
_checked: true
|
|
7839
7839
|
};
|
|
7840
7840
|
return value ? newOption : option;
|
|
7841
7841
|
} else {
|
|
@@ -7927,7 +7927,7 @@ function useSelect(props, selectRef, ctx, focus, blur, isSelectFocus, t) {
|
|
|
7927
7927
|
const tagDelete = (data) => {
|
|
7928
7928
|
let { modelValue } = props;
|
|
7929
7929
|
const checkedItems = [];
|
|
7930
|
-
for (const child of
|
|
7930
|
+
for (const child of selectedOptions.value) {
|
|
7931
7931
|
if (data.value === child.value) {
|
|
7932
7932
|
child._checked = false;
|
|
7933
7933
|
}
|