系统按键指的是ctrl、alt、shift 等按键。
单独点击系统操作符无效。
系统按键通常与其他按键组合使用。
·.ctrl修饰符
·.alt修饰符
·.shift 修饰符
<!DOCTYPE html> <html lang=“en”> <head> <meta charset=“UTF-8”> <meta name=“viewport” content=“width=device-width, initial-scale=1.0”> <title>Document</title> </head> <body> <div id=“app”> <input type=“text” @keyup.ctrl.q=“fn” v-model=“inputValue”> </div> <script src=“lib/vue.js”></script> <script> new Vue({ el: ‘#app’, data: { inputValue: ‘’ }, methods: { fn (event) { // console.log(event); this.inputValue = ‘’; } } }); </script> </body> </html>