随笔分类 -  Vue

021/7/13
摘要:虚拟dom的概念 当我们用v-if进行不同表单显示时会出现用户输入不清除问题 v-if 与v-show 本质:v-if是删除了节点然后显示时重新创建,v-show是添加了display:none属性 阅读全文
posted @ 2021-07-15 09:07 hbsj 阅读(104) 评论(0) 推荐(0)
摘要:1.阻止事件冒泡 <div @click="divClick"> this is a btn father div <button @click.stop="btnClick">this is a button in div</button> </div> 通过stop来防止 2.阻止默认行为 pr 阅读全文
posted @ 2021-07-15 07:30 hbsj 阅读(55) 评论(0) 推荐(0)