nhn / toast-ui.vue-image-editor

Toast UI Image Editor for Vue
MIT License
186 stars 41 forks source link

Block redirect on "Download" #20

Open fabrizioanichini opened 5 years ago

fabrizioanichini commented 5 years ago

Hi, Instead of Downloading the file ( opening in a new tab into the browser) i just need to URL. When I hit save i dont want to be redirect in a blank page. I've tried different methods: storeEditorImg: function() { this.src = this.$refs.tuiImageEditor.invoke('toDataURL'); return false; },

or

storeEditorImg: function(event) { this.src = this.$refs.tuiImageEditor.invoke('toDataURL'); event.preventDefault(); },

siamkreative commented 4 years ago

How did you solve this? Would be great if you could share your solution.

jinwoo-kim-nhn commented 4 years ago