1.聲明一個組件 chila.vue
<template> <div> child1 //顯示內容 </div> </template> <script> export default { name: "child1" } </script>
1
2.引用 parent.vue
<template> <div> <child1 ref="child1"></child1> //使用 </div> </template> <script> import Child1 from './child1'; //引用 export default { name: "parent", components: {child1: Child1} } </script>