robcresswell / vue-material-design-icons

Material Design Icons as Vue Single File Components
https://npmjs.com/vue-material-design-icons
MIT License
162 stars 35 forks source link

fix: Prevent double clicking in Vue 3 #282

Closed robcresswell closed 2 years ago

robcresswell commented 2 years ago

In Vue 3, click events fall through meaning each event is fired twice when adding @click prop to the component. Adding emits: ['click'] tells the component to expect an external click event, therefore preventing the double event.

Co-Authored-By: 1VinceP vpalmergraphics@gmail.com