File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -228,21 +228,21 @@ obj.a++
228
228
const ComponentWithStyleInVNodeData = Vue . extend ( {
229
229
render ( h ) {
230
230
const elementWithStyleAsString = h ( 'div' , {
231
- style : 'background- color: red ;'
231
+ style : '--theme- color: black ;'
232
232
} )
233
233
234
- const elementWithStyleAsObject = h ( 'div' , {
235
- style : { backgroundColor : 'green ' }
234
+ const elementWithStyleCSSProperties = h ( 'div' , {
235
+ style : { [ '--theme-color' as any ] : 'black ' }
236
236
} )
237
237
238
- const elementWithStyleAsArrayOfObjects = h ( 'div' , {
239
- style : [ { backgroundColor : 'blue ' } ]
238
+ const elementWithStyleAsArrayOfStyleValues = h ( 'div' , {
239
+ style : [ { [ '--theme-color' as any ] : 'black ' } ]
240
240
} )
241
241
242
242
return h ( 'div' , undefined , [
243
243
elementWithStyleAsString ,
244
- elementWithStyleAsObject ,
245
- elementWithStyleAsArrayOfObjects
244
+ elementWithStyleCSSProperties ,
245
+ elementWithStyleAsArrayOfStyleValues
246
246
] )
247
247
}
248
248
} )
Original file line number Diff line number Diff line change
1
+ import { StyleValue } from './jsx'
1
2
import { Vue } from './vue'
2
3
import { DirectiveFunction , DirectiveOptions } from './options'
3
4
import { Ref } from './v3-generated'
@@ -85,7 +86,7 @@ export interface VNodeData {
85
86
staticClass ?: string
86
87
class ?: any
87
88
staticStyle ?: { [ key : string ] : any }
88
- style ?: string | object [ ] | object
89
+ style ?: StyleValue
89
90
props ?: { [ key : string ] : any }
90
91
attrs ?: { [ key : string ] : any }
91
92
domProps ?: { [ key : string ] : any }
You can’t perform that action at this time.
0 commit comments