chmln / vue-wysiwyg

A lightweight WYSIWYG HTML editor for Vue.js
https://chmln.github.io/vue-wysiwyg/
MIT License
555 stars 134 forks source link

blur event not received #109

Open madc0w opened 4 years ago

madc0w commented 4 years ago

I see that the latest commit to Editr.vue implemented a blur event, but I can't seem to receive this event, for some reason.

            <wysiwyg
                v-model="wysiwygHtml"
                @change="console.log('wysiwyg change')"
                @blur="console.log('wysiwyg blur')"
            />

change works great, but we never see "wysiwyg blur" in the console.