Prevent toggler from submitting form

This commit is contained in:
Montana 2018-09-25 13:16:59 -04:00
parent 43fddc03b7
commit ccad2d9a73

View File

@ -25,6 +25,7 @@ export default {
methods: {
toggle: function (e) {
e.preventDefault()
this.isVisible = !this.isVisible
}
}