@netang/quasar 0.1.79 → 0.1.80
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.
|
@@ -925,7 +925,12 @@ export default {
|
|
|
925
925
|
* 移除已选数据
|
|
926
926
|
*/
|
|
927
927
|
function onRemoveSelected(index) {
|
|
928
|
-
|
|
928
|
+
|
|
929
|
+
const _selected = [...selected.value]
|
|
930
|
+
_selected.splice(index, 1)
|
|
931
|
+
|
|
932
|
+
// 触发更新值
|
|
933
|
+
emitModelValue(_selected)
|
|
929
934
|
}
|
|
930
935
|
|
|
931
936
|
/**
|