const vnode = h(statusType, { task, disabled: editMatterFun(task) }); const app = createApp({ components: { ...vnode.type.components }, render () { return vnode; // 在 render 函数中返回之前创建的 VNode } }); app.use(icons); app.use(store); app.use(ElementPlus);