1.同时为true才显示。
v-show只是css的隐藏。
v-if是dom元素的销毁。
<div style="margin-bottom: 50px">
<h1 v-show="showH" v-if="ifH">v-show和v-if一起使用</h1>
<div>showH:{{showH}}</div>
<div>ifH:{{ifH}}</div>
<el-button type="primary" @click="showH = !showH">showH</el-button>
<el-button type="primary" @click="ifH = !ifH">ifH</el-button>
</div>