Commit dde112ee by Tianqing Liu

feat: 支持alt多选

1 parent 12c302e2
...@@ -635,7 +635,7 @@ export default { ...@@ -635,7 +635,7 @@ export default {
} }
const handleClick = function(data, event){ const handleClick = function(data, event){
console.log('handleClick', event) console.log('handleClick', event)
if (event.metaKey) { if (event.metaKey || event.altKey) {
selectedPersonList.value.push(data) selectedPersonList.value.push(data)
} else { } else {
currentItemId.value = data.id currentItemId.value = data.id
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!