Skip to content

Commit f7db7f3

Browse files
authored
fix(types): fix spreading VNodeData in tsx (#12789)
fix #12778
1 parent 0b3cf7d commit f7db7f3

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

types/test/vue-test.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -228,21 +228,21 @@ obj.a++
228228
const ComponentWithStyleInVNodeData = Vue.extend({
229229
render(h) {
230230
const elementWithStyleAsString = h('div', {
231-
style: 'background-color: red;'
231+
style: '--theme-color: black;'
232232
})
233233

234-
const elementWithStyleAsObject = h('div', {
235-
style: { backgroundColor: 'green' }
234+
const elementWithStyleCSSProperties = h('div', {
235+
style: { ['--theme-color' as any]: 'black' }
236236
})
237237

238-
const elementWithStyleAsArrayOfObjects = h('div', {
239-
style: [{ backgroundColor: 'blue' }]
238+
const elementWithStyleAsArrayOfStyleValues = h('div', {
239+
style: [{ ['--theme-color' as any]: 'black' }]
240240
})
241241

242242
return h('div', undefined, [
243243
elementWithStyleAsString,
244-
elementWithStyleAsObject,
245-
elementWithStyleAsArrayOfObjects
244+
elementWithStyleCSSProperties,
245+
elementWithStyleAsArrayOfStyleValues
246246
])
247247
}
248248
})

types/vnode.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { StyleValue } from './jsx'
12
import { Vue } from './vue'
23
import { DirectiveFunction, DirectiveOptions } from './options'
34
import { Ref } from './v3-generated'
@@ -85,7 +86,7 @@ export interface VNodeData {
8586
staticClass?: string
8687
class?: any
8788
staticStyle?: { [key: string]: any }
88-
style?: string | object[] | object
89+
style?: StyleValue
8990
props?: { [key: string]: any }
9091
attrs?: { [key: string]: any }
9192
domProps?: { [key: string]: any }

0 commit comments

Comments
 (0)