we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "vue toggle boolean on click"
Luis
12 Aug 2016
1// In HTML tag
2@click="toggle = !toggle"
3
4// In Vue script
5export default {
6	data() {
7		return {
8			toggle: false
9		}
10	}
11}