[Vuejs]-Vue Composition API createComponent child components

1👍

Problem is return closeDialog in setup function of ListFilter component. If you return a function from setup(), Vue expects it is a render function. Try return { closeDialog } instead…

Leave a comment