We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a733369 commit 0086137Copy full SHA for 0086137
src/api/directives.md
@@ -197,7 +197,7 @@
197
<!-- shorthand -->
198
<button @click="doThis"></button>
199
200
- <!-- shorthand dynamic event (2.6.0+) -->
+ <!-- shorthand dynamic event -->
201
<button @[event]="doThis"></button>
202
203
<!-- stop propagation -->
src/guide/template-syntax.md
@@ -169,7 +169,7 @@ The `v-` prefix serves as a visual cue for identifying Vue-specific attributes i
169
170
<a @click="doSomething"> ... </a>
171
172
-<!-- shorthand with dynamic argument (2.6.0+) -->
+<!-- shorthand with dynamic argument -->
173
<a @[event]="doSomething"> ... </a>
174
```
175
0 commit comments