记录(待学习任务)

const h = this.$createElement;
let that = this
this.$confirm({
    title: h('div', {}, [
        "确定要删除",
        h("span",{style: "color:red;"},`${info.name}及其下`),
        "吗?"
    ]),
    async onOk() {
        // await that.delete(info);
    },
    onCancel() {
      console.log('Cancel');
    }
});
上一篇:Virtual DOM(虚拟DOM)


下一篇:Vue——render函数