Commit dde112ee by Tianqing Liu

feat: 支持alt多选

1 parent 12c302e2
......@@ -635,7 +635,7 @@ export default {
}
const handleClick = function(data, event){
console.log('handleClick', event)
if (event.metaKey) {
if (event.metaKey || event.altKey) {
selectedPersonList.value.push(data)
} else {
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!