jakiestfu / Medium.js

A tiny JavaScript library for making contenteditable beautiful (Like Medium's editor)
http://jakiestfu.github.io/Medium.js/
4.39k stars 403 forks source link

On input change event? #204

Open hrmshandy opened 7 years ago

hrmshandy commented 7 years ago

In my case I use vue js, I need to store value to data on input changed. How could I accomplish this?

I tried like this, but editor.addEventListener is not a function editor.addEventListener('input', (e) => { this.content = e.target.value; });