eoss-ui 0.5.39 → 0.5.40
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/eoss-ui.common.js +3 -2
- package/lib/index.js +1 -1
- package/lib/select.js +2 -1
- package/package.json +1 -1
- package/packages/select/src/main.vue +2 -1
- package/src/index.js +1 -1
- package/CHANGELOG.md +0 -929
package/lib/select.js
CHANGED
|
@@ -3968,7 +3968,8 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
3968
3968
|
eles.push(h('el-option', {
|
|
3969
3969
|
attrs: {
|
|
3970
3970
|
label: item[_this2.label] || item.label,
|
|
3971
|
-
value: _this2.isObject ? item : item[_this2.valKey]
|
|
3971
|
+
value: _this2.isObject ? item : item[_this2.valKey],
|
|
3972
|
+
disabled: item.disabled
|
|
3972
3973
|
}
|
|
3973
3974
|
}));
|
|
3974
3975
|
}
|
package/package.json
CHANGED