<template>
<div id="main">
<span v-if="title">aaa</span>
<span v-else>bbb</span>
<button @click="clickme">aaaaa</button>
</div>
</template>
<script>
export default{
data () {
return {
title: true,
showIn: false,
imageSrc: 'http://www.baidu.com',
classA: 'aaa',
classB: 'bbb',
num: 0
}
},
methods: {
clickme () {
if (this.title === true) {
this.title = false
console.log(this.title)
} else {
this.title = true
console.log(this.title)
}
}
}
}
</script>
慕容森
qq_花开花谢_0
相关分类