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 59b2a0e commit c66b756Copy full SHA for c66b756
flow/vnode.js
@@ -53,7 +53,6 @@ declare interface VNodeData {
53
};
54
directives?: Array<VNodeDirective>;
55
keepAlive?: boolean;
56
- [key: string]: any;
57
}
58
59
declare type VNodeDirective = {
src/core/instance/render.js
@@ -163,7 +163,7 @@ export function renderMixin (Vue: Class<Component>) {
163
if (Array.isArray(value)) {
164
value = toObject(value)
165
166
- const data = vnode.data
+ const data: any = vnode.data
167
for (const key in value) {
168
if (key === 'class' || key === 'style') {
169
data[key] = value[key]
0 commit comments