VueUiDashboard #208
- Add #top and #bottom slots to add extra content above or below the charts
<VueUiDashboard :dataset="dataset" :config="config">
<template #top="{ item }">
<button>My button on top</button>
</template>
<template #content="{ item }">
<component :is="item.component" v-bind="item.props" />
</template>
<template #bottom="{ item }">
Content below
</template>
</VueUiDashboard>