Skip to content

v2.10.5

Latest
Compare
Choose a tag to compare
@graphieros graphieros released this 13 Jun 08:53

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>