摘要: .sync修饰符相当于将值传递到子组件,并且监听这个值得变化 .sync传递单个值 <template> <div id = "app"> <div> <test-sync :show.sync = "show"></test-sync> </div> </div> </template> impo 阅读全文
posted @ 2022-01-10 23:25 YAN-YAN 阅读(379) 评论(0) 推荐(0)
摘要: 非props的Attribute属性就是在子组件中没有使用props属性接收的属性,但在父元素中传递的属性 <template> <div id = "app"> <h1> 非props的Attribute?inheritAttrs </h1> <my-input></my-input> </div 阅读全文
posted @ 2022-01-10 09:12 YAN-YAN 阅读(36) 评论(0) 推荐(0)