关于Vue中exact修饰符

268 阅读1分钟

必需加shift按键点击才有作用

<button @click.shift.exact="getBtn">改变值</button>

 getBtn(){
      this.csjg++
    }