vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

232 - 按键修饰符

Open PoliWen opened this issue 2 years ago • 0 comments

<template>
  <!-- Add key modifiers made this will fire even if Alt or Shift is also pressed -->
<button @click.alt.shift="onClick1">A</button>

<!-- Add key modifiers made this will only fire when Shift and no other keys are pressed -->
<button @click.shift="onShiftClick">A</button>

<!-- Add key modifiers made this will only fire when no system modifiers are pressed -->
<button @click.exact="onClick2">A</button>
</template>

<script setup>
  function onClick1(){
    console.log('onClick1')
  }
  function onShiftClick(){
    console.log('onShiftClick')
  }
  function onClick2(){
    console.log('onClick2')
  }
</script>

PoliWen avatar Sep 04 '22 16:09 PoliWen