vue3 h函数点击事件

const export= ()=>{

  ElMessageBox({

      title: "导出",

      message: h("p", null, [

        h("div", {style:""},

        `通知通知`),

        h("span", {style:""},

        `味儿涂鸦跳跃 `),

        h(

          'span',

          {

            onClick: submitForm //这里绑定事件

          },      

          h("span", {cursor:pointer;"},`Download Center`),

        ),

         h("span", {style:"color:#92929D"},

        ``),

      ]),

      showCancelButton: true,

      confirmButtonText: "Confirm",

      cancelButtonText: "Cancel",

      customClass: "class",

      closeOnClickModal: false,

      type: "warning"

    }).then(() => {

      alert('kaifazhogn')

    });

}

const submitForm = () =>{

  alert(1)

}

你可能感兴趣的:(javascript,前端,服务器)