Skip to content

Files

Latest commit

 

History

History
28 lines (19 loc) · 830 Bytes

no-deprecated-v-on-native-modifier.md

File metadata and controls

28 lines (19 loc) · 830 Bytes

Pattern: Use of deprecated .native modifier on v-on

Issue: -

Description

This rule reports use of deprecated .native modifier on v-on directive (in Vue.js 3.0.0+)

<template>
  <!-- ✓ GOOD -->
  <CoolInput v-on:keydown.enter="onKeydownEnter" />
  <CoolInput @keydown.enter="onKeydownEnter" />

  <!-- ✗ BAD -->
  <CoolInput v-on:keydown.native="onKeydown" />
  <CoolInput @keydown.enter.native="onKeydownEnter" />
</template>

Further Reading