Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Prevent double clicking in Vue 3
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>
- Loading branch information