Using Vue Named Slots to Create Multiple Template Slots
Vue slots allow you to inject content from a parent component into a child component.
Here’s the most basic example, whatever we put inside <slot>
will be the fallback content if we don’t give any slot content from the parent.
<template>
<div>…