nhn / toast-ui.vue-image-editor

Toast UI Image Editor for Vue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Block redirect on "Download"

fabrizioanichini opened this issue · comments

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(); },

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