可能会渲染出这样的东西:

    幸好,Vue 自定义的 元素让这变得非常简单:

    1. Vue.component('alert-box', {
    2. template: `
    3. <strong>Error!</strong>
    4. <slot></slot>
    5. `
    6. })

    到目前为止,关于插槽你需要了解的大概就这些了,如果你阅读完本页内容并掌握了它的内容,我们会推荐你再回来把读完。