Closed zuo305 closed 1 year ago
Hi,
I got the answer from this link: https://github.com/eclipsesource/jsonforms/blob/master/packages/vue/vue/README.md
methods: { onChange(event: Event) { this.handleChange( this.control.path, (event.target as HTMLInputElement).value ); }, },
It is working well. thanks.
Hi,
Thanks to the lib, I already made a custom render component(selector) and it is working well. Now I hope to trigger the form's onChange inside of the custom render component. How to do it?
I already found the "handleChange", but I am not sure how to use it.
Thanks. I am using Vue3.