mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 00:26:20 +08:00
fix(api-select): fix options-change
event data
修复options-change事件参数不是select所使用的标准options数据的问题
This commit is contained in:
@@ -31,6 +31,7 @@
|
|||||||
- **BasicTree** 修复搜索功能可能导致`checkedKeys`丢失的问题
|
- **BasicTree** 修复搜索功能可能导致`checkedKeys`丢失的问题
|
||||||
- **CodeEditor** 修复 value 不支持 v-model 用法的问题
|
- **CodeEditor** 修复 value 不支持 v-model 用法的问题
|
||||||
- **CountdownInput** 修复不支持`input`插槽的问题
|
- **CountdownInput** 修复不支持`input`插槽的问题
|
||||||
|
- **ApiSelect** 修复`options-change`事件参数不是`select`所使用的标准`options`数据的问题
|
||||||
- **其它**
|
- **其它**
|
||||||
- 修复菜单默认折叠的配置不起作用的问题
|
- 修复菜单默认折叠的配置不起作用的问题
|
||||||
- 修复`safari`浏览器报错导致网站打不开
|
- 修复`safari`浏览器报错导致网站打不开
|
||||||
|
@@ -134,7 +134,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function emitChange() {
|
function emitChange() {
|
||||||
emit('options-change', unref(options));
|
emit('options-change', unref(getOptions));
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleChange(_, ...args) {
|
function handleChange(_, ...args) {
|
||||||
|
Reference in New Issue
Block a user