您好,我正在将我的 web 代码的一部分转换为 ionic-vue 应用程序,我想知道我们是否可以使用经典 vue 组件的离子模态控制器从我的模态中捕获 this.$emit。
基本上我想翻译
<NewAppointmentModal @onSuccess="handleAppointmentCreation"/>
至
this.$ionic.modalController.create({ component: NewAppointmentModal}).then(m => m.present())
//how can i catch the onSuccess event like before