<button @click="variable = !variable"> Toggle Value </button> <script> export default { data () { return { variable: false } } } </script>