RE: Vue.js实战笔记
.stop @click.stop='show' //可以阻止事件冒泡 .prevent //阻止默认行为 .capture //捕获触发事件 .self //只有点击当前元素才触发 .once //只触发一次
RE: Vue.js实战笔记