fix(api-select): fix options-change event data

修复options-change事件参数不是select所使用的标准options数据的问题
This commit is contained in:
无木
2021-07-19 16:19:51 +08:00
parent a764a95ae9
commit 897bed9729
2 changed files with 2 additions and 1 deletions

View File

@@ -134,7 +134,7 @@
}
function emitChange() {
emit('options-change', unref(options));
emit('options-change', unref(getOptions));
}
function handleChange(_, ...args) {