摘要:
使用child组件: <father-component> <child msg="hehe!"></child> </father-component> 阅读全文
摘要:
<template> <div> child1 </div> </template> <script> export default { name: "child1", props: "msg", methods: { handleParentClick(e) { console.info(e) } } } </script> parent.vue <template> <div> <button 阅读全文