[Vuejs]-Access Component Method from Parent Method

0👍

To call methods on a component, you need to give the component a ref. So in your <gallery> tag, put ref="gallery". Then, in your root vue, you can do this.$refs.gallery.openUploader();

Leave a comment