<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;
	}
}
}
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐