组件 v-if 小心哦

vue 中,组件 v-if 小心哦

v-if 会影响子组件的声明周期,导致watch不起作用

<father>
           <child v-if>

           <child>   

</father>    



应该使用 v-show

<father>
           <child v-show>

           <child>   

</father>    

  

原文地址:https://www.cnblogs.com/anbozhu7/p/11957951.html