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.
2 parents c2e4bd9 + 3e08b75 commit 2a7b73cCopy full SHA for 2a7b73c
src/guide/syntax.md
@@ -148,8 +148,17 @@ The `v-` prefix serves as a visual cue for identifying Vue-specific attributes i
148
149
<!-- shorthand -->
150
<a :href="url"></a>
151
+
152
+or
153
154
+<!-- full syntax -->
155
+<button v-bind:disabled="someDynamicCondition">Button</button>
156
157
+<!-- shorthand -->
158
+<button :disabled="someDynamicCondition">Button</button>
159
```
160
161
162
### `v-on` Shorthand
163
164
``` html
0 commit comments