摘要: 使用child组件: <father-component> <child msg="hehe!"></child> </father-component> 阅读全文
posted @ 2019-10-16 22:06 泥土里的绽放 阅读(362) 评论(0) 推荐(0) 编辑
摘要: <template> <div> child1 </div> </template> <script> export default { name: "child1", props: "msg", methods: { handleParentClick(e) { console.info(e) } } } </script> parent.vue <template> <div> <button 阅读全文
posted @ 2019-10-16 20:39 泥土里的绽放 阅读(165) 评论(0) 推荐(0) 编辑