标签:round his vue color sre style span 根据 new
v-if根据表达式的值的真假条件渲染元素。
1 <div id="app"> 2 <p v-if="isRender">this is a message!</p> 3 </div> 4 <script> 5 var app = new Vue({ 6 el:‘#app‘, 7 data:{ 8 isRender: true //如果为false则不渲染改元素 9 } 10 }) 11 </script>
标签:round his vue color sre style span 根据 new
原文地址:http://www.cnblogs.com/zxh197242031/p/7324210.html