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 22c933a commit 3afbcd0Copy full SHA for 3afbcd0
src/v2/guide/render-function.md
@@ -170,12 +170,14 @@ One thing to note: similar to how `v-bind:class` and `v-bind:style` have special
170
171
``` js
172
{
173
- // Same API as `v-bind:class`
+ // Same API as `v-bind:class`, accepting either
174
+ // a string, object, or array of strings and objects.
175
class: {
176
foo: true,
177
bar: false
178
},
- // Same API as `v-bind:style`
179
+ // Same API as `v-bind:style`, accepting either
180
+ // a string, object, or array of objects.
181
style: {
182
color: 'red',
183
fontSize: '14px'
0 commit comments