<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<div id="app">
<div v-if="tmp">看到我了!</div>
<div v-else-if="tmp1">11111</div>
<div v-else>看到她了!</div>
</br>
</br>
<button type="button" @click="tmp=!tmp"> 点我1 </button>
</br>
</br>
<button type="button" @click="tmp1=!tmp1"> 点我2 </button>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
new Vue({
//指定作用于那一个div
el:'#app',
//属性
data:{
tmp:false,
tmp1:true,
}
});
</script>
</html>