Vue js子组件和父组件

时间:2017-08-23 18:58:02

标签: vuejs2 vue-component

如何理解子组件和父组件?孩子或父母在哪里?在文档中我没有创建这个desription。请帮忙。

在下面的示例中,我只看到一个没有父母或孩子的组件。只有一个。这是“我的组件”。等待答案。谢谢。

Vue.component("my-component", {
    template: `<li> Hello </li>`
})

new Vue({
    el: "#app"
})

<div id="app">
    <my-component> </my-component>
</div>

1 个答案:

答案 0 :(得分:0)

Vue - #app是父级和组件 - 我的组件是子级。 里面的组件是一个孩子,很明显