Html代码:

<div class="demo">
		<button class="btn" v-on:click = "change">隐藏</button>
		<div class="area" v-show="showArea"></div>
</div>

Vue代码:

new Vue({
			el:".demo",
			data:{
				showArea:true
			},
			methods:{
				change:function(){
					if(this.showArea){
						this.showArea=false
					}else{
						this.showArea=true
					}
				}
			}
		})
Logo

前往低代码交流专区

更多推荐