vue 用v-show,点击显示和隐藏
<template><div class="container"><button @click="clicktrue">btn</button><div class="show1" v-show="show1">show1</div><div class="show2" v-show="show2">show2&l
·
<template>
<div class="container">
<button @click="clicktrue">btn</button>
<div class="show1" v-show="show1">
show1
</div>
<div class="show2" v-show="show2">
show2
</div>
</div>
</template>
<script>
export default {
data() {
return {
show1:true,
show2:false,
}
},
methods:{
clicktrue(){
this.show1 = !this.show1;
this.show2 = !this.show2;
}
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)