|
export default {
name: 'basic',
computed: {
headingClasses: function headingClasses () {
return {
red: this.isCrazy,
blue: !this.isCrazy,
shadow: this.isCrazy
}
}
},
data: function data () {
return {
msg: 'Welcome to Your Vue.js App',
isCrazy: false
}
},
methods: {
toggleClass: function toggleClass () {
this.isCrazy = !this.isCrazy
}
}
}
|