How to verify the modal created by render in iview

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]

Menu