DCzajkowski / vue-emoji-picker

Very simple, yet powerful, vue emoji picker 🎉🔥🚀
MIT License
332 stars 49 forks source link

Don't work on IE11 #16

Closed Regna91 closed 4 years ago

Regna91 commented 4 years ago

hi the destructiion doesn't work in IE11. How can i change the code to write ES5? Thanks in advance.

...
<div slot="emoji-invoker" slot-scope="{ events: { click: clickEvent } }" @click.stop="clickEvent">
    <button type="button">open</button>
  </div>
....  
 <div slot="emoji-picker" slot-scope="{ emojis, insert, display }">
 ....
DCzajkowski commented 4 years ago

For example

<div slot="emoji-invoker" slot-scope="scope" @click.stop="scope.events.click">
    <button type="button">open</button>
</div>