与v-if的区别在于DOM中是否渲染 v-show 其实现实的是style="display:none" 频率高选择show,一次显示if 测试示例
<h2 v-show="true"> show显示我</h2>