Vuetable-2: Passing slots to children

Created on 15 Jun 2019  路  2Comments  路  Source: ratiw/vuetable-2

This has been asked before #101 was wondering if we have any solution to this problem as i am having the same use case where we have a vue-table component that we reference in some parent components and would like to pass in the scoped slots to it.

Most helpful comment

Looks like it's now possible in 2.6 using scopedSlots variable. So inside the child component where vue-table resides you'll add the following code

<template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"><slot :name="slot" v-bind="scope"/></template>

for example:

<vuetable
    ref="vuetable"
    :http-options="httpOptions"
    :query-params="queryParams"
    :fields="fields"
    :api-url="url"
    data-path="data"
    pagination-path="meta"
    :css="css.table"
    event-prefix
    :no-data-template="noResultsTemplate"
    :per-page="perPage"
    :sort-order="defaultSort"
    :sort-params="sortParams"
    @loading="onLoading"
    @loaded="onLoaded"
    @pagination-data="onPaginationData"
>
    <template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"><slot :name="slot" v-bind="scope"/></template>
</vuetable>

All 2 comments

Looks like it's now possible in 2.6 using scopedSlots variable. So inside the child component where vue-table resides you'll add the following code

<template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"><slot :name="slot" v-bind="scope"/></template>

for example:

<vuetable
    ref="vuetable"
    :http-options="httpOptions"
    :query-params="queryParams"
    :fields="fields"
    :api-url="url"
    data-path="data"
    pagination-path="meta"
    :css="css.table"
    event-prefix
    :no-data-template="noResultsTemplate"
    :per-page="perPage"
    :sort-order="defaultSort"
    :sort-params="sortParams"
    @loading="onLoading"
    @loaded="onLoaded"
    @pagination-data="onPaginationData"
>
    <template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"><slot :name="slot" v-bind="scope"/></template>
</vuetable>

It's evening 11 at my house you just saved me from a sleepless night I recollecting you

Was this page helpful?
0 / 5 - 0 ratings

Related issues

PrimozRome picture PrimozRome  路  5Comments

kawamataryo picture kawamataryo  路  3Comments

jdriesen picture jdriesen  路  4Comments

mannyyang picture mannyyang  路  3Comments

wa05 picture wa05  路  3Comments