如何动态更改v数据表的标题?

时间:2019-03-01 12:40:24

标签: vue.js datatable vuejs2 vuetify.js vue-resource

我正在尝试制作一个由json数据(Vue + Vuetify + Vue-Resource)填充的v-data-table。我可以毫无问题地显示数据,但是我需要更改标题的第一列以使用户实际查看的数据可见。 目前,我使用的是带有我想要的标签的静态标头:

headers: [
    {
      text: "",
      align: "left",
      sortable: false,
      value: "name",
      id: "primeiraColunaColuna"
    },

    { text: "total QTD", value: "total QTD" },
    { text: "total", value: "Total" },
    { text: "Date", value: "Date" },
    { text: "Time", value: "Time" }
  ],

我想将文本字段更改为A,B,C,D等。 反正有做到这一点的吗?

1 个答案:

答案 0 :(得分:0)

您可以从将文本作为参数的方法返回标头,例如,可以在循环中使用当前索引:

<v-layout>
  <v-flex v-for="i in 3" xs4>
    <v-data-table
    :headers="getHeaders(i)"
    :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>

      </template>
    </v-data-table>
  </v-flex>
</v-layout>

methods:{
  getHeaders(headingText){
    return [
    {
      text: 'Dynamic heading no. ' +headingText,
      align: 'left',
      sortable: false,
      value: 'name'
    },
    { text: 'Calories', value: 'calories' },
    { text: 'Fat (g)', value: 'fat' }
  ];
}

}

实时示例:https://codepen.io/sf-steve/pen/pYgOze