) {
const { tag, data, slots } = vnode
const render = tag as FunctionalComponent
- const { props, attrs } = resolveProps(data, render.props, render)
+ const { props, attrs } = resolveProps(data, render.props)
const subTree = (vnode.children = normalizeComponentRoot(
render(props, slots || EMPTY_OBJ, attrs || EMPTY_OBJ),
vnode,
}
if (shouldUpdate) {
- const { props, attrs } = resolveProps(nextData, render.props, render)
+ const { props, attrs } = resolveProps(nextData, render.props)
const nextTree = (nextVNode.children = normalizeComponentRoot(
render(props, nextSlots || EMPTY_OBJ, attrs || EMPTY_OBJ),
nextVNode,