Skip to content

Commit 1d0a396

Browse files
Paul Verbeek-Mastkazupon
authored andcommitted
added v-bind to example (vuejs#907)
Added `v-bind` to the Multiple Values example for consistency
1 parent a821ed4 commit 1d0a396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/class-and-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,5 +200,5 @@ When you use a CSS property that requires [vendor prefixes](https://developer.mo
200200
Starting in 2.3 you can provide an array of multiple (prefixed) values to a style property, for example:
201201

202202
``` html
203-
<div :style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }">
203+
<div v-bind:style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }">
204204
```

0 commit comments

Comments
 (0)