Use this tag for questions about the Vue.js
Vue content distribution API, using the <slot>
element to serve as distribution outlets for content.
Example
Parent component
<template>
<child>
<h1>Slot content</h1>
<h2>This content is passed from parent to child</h2>
</child>
</template>
Child component with <slot>
<template>
<slot></slot>
</template>