vnode.d.ts (vue-2.7.13) | : | vnode.d.ts (vue-2.7.14) | ||
---|---|---|---|---|
import { StyleValue } from './jsx' | ||||
import { Vue } from './vue' | import { Vue } from './vue' | |||
import { DirectiveFunction, DirectiveOptions } from './options' | import { DirectiveFunction, DirectiveOptions } from './options' | |||
import { Ref } from './v3-generated' | import { Ref } from './v3-generated' | |||
import { ComponentPublicInstance } from './v3-component-public-instance' | import { ComponentPublicInstance } from './v3-component-public-instance' | |||
/** | /** | |||
* For extending allowed non-declared props on components in TSX | * For extending allowed non-declared props on components in TSX | |||
*/ | */ | |||
export interface ComponentCustomProps {} | export interface ComponentCustomProps {} | |||
skipping to change at line 88 | skipping to change at line 89 | |||
export interface VNodeData { | export interface VNodeData { | |||
key?: string | number | key?: string | number | |||
slot?: string | slot?: string | |||
scopedSlots?: { [key: string]: ScopedSlot | undefined } | scopedSlots?: { [key: string]: ScopedSlot | undefined } | |||
ref?: VNodeRef | ref?: VNodeRef | |||
refInFor?: boolean | refInFor?: boolean | |||
tag?: string | tag?: string | |||
staticClass?: string | staticClass?: string | |||
class?: any | class?: any | |||
staticStyle?: { [key: string]: any } | staticStyle?: { [key: string]: any } | |||
style?: string | object[] | object | style?: StyleValue | |||
props?: { [key: string]: any } | props?: { [key: string]: any } | |||
attrs?: { [key: string]: any } | attrs?: { [key: string]: any } | |||
domProps?: { [key: string]: any } | domProps?: { [key: string]: any } | |||
hook?: { [key: string]: Function } | hook?: { [key: string]: Function } | |||
on?: { [key: string]: Function | Function[] } | on?: { [key: string]: Function | Function[] } | |||
nativeOn?: { [key: string]: Function | Function[] } | nativeOn?: { [key: string]: Function | Function[] } | |||
transition?: object | transition?: object | |||
show?: boolean | show?: boolean | |||
inlineTemplate?: { | inlineTemplate?: { | |||
render: Function | render: Function | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added |