UNPKG

generator-easy-vue

Version:
13 lines (12 loc) 186 B
export const toggle = { data() { return { show: false } }, methods: { toggleShow() { this.show = !this.show } } }