1 <template>
2 <div>
3 <!-- 3.在template中就可以直接使用了 -->
4 <testComponent/>
5 </div>
6 </template>
7
8 <script>
9 //1.先使用import导入你要在该组件中使用的子组件
10 import testComponent from './testComponent.vue'
11 export default {
12 //2.然后,在components中写入子组件
13 components: {testComponent},
14 methods: {},
15 data:{},
16 }
17 </script>
18 <style></style>
vue.js 2.0 组件调用其他组件的方法
最新推荐文章于 2023-07-17 13:39:30 发布