[Vuejs]-VueJs simple @click doesn't work inside a single file component

0👍

This is because of forms. In forms any click event / button will be treated as submit (page gets reloaded) until unless specifed. To stop it from submitting you can do as follows

more reference: https://v2.vuejs.org/v2/guide/events.html

Leave a comment