wip fix
This commit is contained in:
parent
a633807320
commit
93528d1e77
File diff suppressed because one or more lines are too long
|
|
@ -107,7 +107,13 @@ export const createViPassProp = (
|
||||||
const item = meta.item as any;
|
const item = meta.item as any;
|
||||||
if (!item[k]) item[k] = v;
|
if (!item[k]) item[k] = v;
|
||||||
}
|
}
|
||||||
render({})
|
const props = meta.item.component?.props as any;
|
||||||
|
for (const [k, v] of Object.entries(
|
||||||
|
comp.component?.props || {}
|
||||||
|
)) {
|
||||||
|
if (!props[k]) props[k] = v;
|
||||||
|
}
|
||||||
|
render({});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue