摘要:
组件的加载与keep-alive keep-alive状态缓存,保持状态 A.组件 <template> <div>vueA{{msg}} <button class="" @click="changeactive" type="button">保持状态</button></div></templa 阅读全文
摘要:
1.父组件向子组件传递数据通过props; 2.子组件传递父组件数据需要通过自定义事件; $emit("定义事件",数据); 父组件: <!-- 模版 --><template> <!-- 只能存在一个根容器--> <div class="main"><p style="font-weight:bo 阅读全文