You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am a vue novice, I created a public style pop-up window MyModal, inside the OK button, I want to click the OK button to get the Form inside the child component form, can this be achieved?
<scriptlang='ts'setup>importFormfrom'@/components/Form.vue';importMyModalfrom'@/components/MyModal.vue';import { useModal } from'vue-final-modal';const { open, patchOptions } =useModal({ component: MyModal, keepAlive: false, attrs: { title: 'my modal',"onSave": () => {// How do I get the value inside the form here? } }, slots: { default: Form },})</script>
The text was updated successfully, but these errors were encountered:
Version
vue-final-modal: ^4.5.4
vue: ^3.4.21
Description
The text was updated successfully, but these errors were encountered: