this.$Modal.confirm({
render: (h) => {
return h("Form", {
ref: "form"
})
}
})
as above, how the Form added with render is validated.
this.$Modal.confirm({
render: (h) => {
return h("Form", {
ref: "form"
})
}
})
as above, how the Form added with render is validated.
answer for yourself
this.$Modal.confirm({
render: (h) => {
let create = this.$createElement
return create('Form', {
ref: 'form'
})
}
})
this allows you to use this.$refs ['form]
1. To make an editable table, I want to be able to use the render method of the table in the AotoComplete, in the editing state, but when displaying, I find that there is a problem with the calculation of the drop-down part of the AotoComplete, sometime...