在组件内部显示子代

时间:2018-12-04 12:01:20

标签: vue.js children

我的问题很简单:如何渲染组件的子代?

我有一个模板:

<template>
  <div id="app">
    <menubar color="#263238">
      <button>click</button>
    </menubar>
  </div>
</template>

menubar是我创建的组件。现在如何在menubar组件内部呈现按钮标签?

1 个答案:

答案 0 :(得分:1)

您应该为此使用插槽。请检查Vue文档中的链接:https://vuejs.org/v2/guide/components-slots.html

enter image description here