fix: arguments order update (#7132)
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>pull/332/head^2
parent
7cb2699f19
commit
6e8315ab40
|
|
@ -42,14 +42,17 @@ export default defineComponent({
|
||||||
return props.content;
|
return props.content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return h(props.content as never, {
|
return h(
|
||||||
...attrs,
|
props.content as never,
|
||||||
props: {
|
{
|
||||||
...props,
|
|
||||||
...attrs,
|
...attrs,
|
||||||
|
props: {
|
||||||
|
...props,
|
||||||
|
...attrs,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
slots,
|
slots,
|
||||||
});
|
);
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue