Skip to content

Commit 0086137

Browse files
fix: remove references to '2.6.0+' (#586)
1 parent a733369 commit 0086137

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/api/directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
<!-- shorthand -->
198198
<button @click="doThis"></button>
199199

200-
<!-- shorthand dynamic event (2.6.0+) -->
200+
<!-- shorthand dynamic event -->
201201
<button @[event]="doThis"></button>
202202

203203
<!-- stop propagation -->

src/guide/template-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ The `v-` prefix serves as a visual cue for identifying Vue-specific attributes i
169169
<!-- shorthand -->
170170
<a @click="doSomething"> ... </a>
171171

172-
<!-- shorthand with dynamic argument (2.6.0+) -->
172+
<!-- shorthand with dynamic argument -->
173173
<a @[event]="doSomething"> ... </a>
174174
```
175175

0 commit comments

Comments
 (0)