简体   繁体   中英

place a vuetify slot outside of its component

I am trying to put the headers for a vuetify v1.5 v-data-table component outside of the data table component itself. Does anyone know how to achieve this? The below does not work:

<template>

    <div>  
        <template slot="headers" slot-scope="props"> 
            <th
                v-for="header in props.headers"
                :key="header.text"
                :class="['table-header']">

                {{ header.text }}
            </th>          
        </template>
    </div>

    //some other unrelated code

    <v-data-table
        :headers="headers"
        :items="desserts"
        class="elevation-1"
        >
        <template v-slot:items="props">
            <td>{{ props.item.name }}</td>
            <td class="text-xs-right">{{ props.item.calories }}</td>
            <td class="text-xs-right">{{ props.item.fat }}</td>
            <td class="text-xs-right">{{ props.item.carbs }}</td>
            <td class="text-xs-right">{{ props.item.protein }}</td>
            <td class="text-xs-right">{{ props.item.iron }}</td>
        </template>
   </v-data-table>

</template>

I don't know if I understand right, let me know in a comment if my unswer is not what you meant.

Proposition : Create one v-data-table with all your headers and data. And above it another v-data-table with just headers.

See how it works in a codepen - v-data-tables

// v-data-table - with items
<v-data-table
  :headers="headers"
   :items="desserts"
   class="elevation-1"
>
  <template v-slot:items="props">
    <td>{{ props.item.name }}</td>
    <td class="text-xs-right">{{ props.item.calories }}</td>
    <td class="text-xs-right">{{ props.item.fat }}</td>
    <td class="text-xs-right">{{ props.item.carbs }}</td>
    <td class="text-xs-right">{{ props.item.protein }}</td>
    <td class="text-xs-right">{{ props.item.iron }}</td>
  </template>
</v-data-table>
// v-data-table - just headers
<v-data-table
 :headers="headers"
 :items="desserts"
 class="elevation-1"
 hide-actions
></v-data-table>
data() {
  return {
    headers: [
      {
        text: 'Dessert (100g serving)',
        align: 'left',
        sortable: false,
        value: 'name'
      },
      { text: 'Calories', value: 'calories' },
      { text: 'Fat (g)', value: 'fat' },
      { text: 'Carbs (g)', value: 'carbs' },
      { text: 'Protein (g)', value: 'protein' },
      { text: 'Iron (%)', value: 'iron' }
    ],
    desserts: [
      {
        name: 'Frozen Yogurt',
        calories: 159,
        fat: 6.0,
        carbs: 24,
        protein: 4.0,
        iron: '1%'
      },
      {
        name: 'Ice cream sandwich',
        calories: 237,
        fat: 9.0,
        carbs: 37,
        protein: 4.3,
        iron: '1%'
      },
    ],
  },
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM