标签: vue.js children
我的问题很简单:如何渲染组件的子代?
我有一个模板:
<template> <div id="app"> <menubar color="#263238"> <button>click</button> </menubar> </div> </template>
和menubar是我创建的组件。现在如何在menubar组件内部呈现按钮标签?
menubar
答案 0 :(得分:1)
您应该为此使用插槽。请检查Vue文档中的链接:https://vuejs.org/v2/guide/components-slots.html。