import son from "./son.vue"; export default { name: father, data() { msgData: "父組件數(shù)據(jù)"; }, methods: { myFunction() { console.log("vue"); } }, components: { son } }; 子組件:1 2 3 4 5 6 7 8 9 10 11 12 13 // 子組件 <template> {{msg}} 按鈕 </template> ...
www.dbjr.com.cn/article/2668...htm 2025-5-14