摘要: 1.匿名插槽 //parent <helloWorld> 插槽使用 </helloWorld> //child <template> <div> <!-- 显示插槽内容:“插槽使用” --> <slot></slot> </div> </template> 2.具名插槽 给slot添加name属性。 阅读全文
posted @ 2021-01-03 10:39 敲敲碰碰 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 一,父到子 1.属性props。 //child props:{msg:String} //parent <HelloWrold :Msg="welcome to Your Vue.js App"></HelloWorld> 2.引用$ref。 <HelloWorld ref="HW"/> this 阅读全文
posted @ 2021-01-03 10:22 敲敲碰碰 阅读(132) 评论(0) 推荐(0) 编辑