如果你想让两个 Vue 组件连在一起,你可以在一个组件中使用另一个组件作为一个子元素。
具体来说,你可以在一个父组件的模板中使用子组件的标签,如下所示:
<template>
<div>
<child-component></child-component>
<other-child-component></other-child-component>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
import OtherChildCompone