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();
- [Vuejs]-Eslint fix command is not fixing all of the vue/html-indent errors
- [Vuejs]-How upload file using dropzone & vueJs
Source:stackexchange.com