vuetify.js - 如何自定义表格标题中的所有元素?

标签 vuetify.js

查看 this page 上的示例,将toUpper应用到所有标题项的方法是什么?必须一个一个地执行它看起来太笨拙了(即 header.calories、header.fat ......),我无法弄清楚 v-for 如何环绕模板/v-slot 元素。是使用“div”并水平弯曲它的唯一方法吗?

 <template>
   <v-data-table
     :headers="headers"
     :items="desserts"
     class="elevation-1"
   >
     <template v-slot:header.name="{ header }">
       {{ header.text.toUpperCase() }}
     </template>
   </v-data-table>
 </template>

 <script>
   export default {
     data: () => ({
       headers: [
         {
           text: 'Dessert (100g serving)',
           align: 'start',
           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%',
         },
         ....// rest of it
       ],
     }),
   }
 </script>

最佳答案

可以循环标题以使其全部大写

这是工作代码笔:https://codepen.io/chansv/pen/gOaRWQb?editors=1010

<div id="app">
  <v-app id="inspire">
    <v-data-table
      :headers="headers"
      :items="desserts"
      class="elevation-1"
      hide-default-header
    >
      <template v-slot:header="{ props }">
        <th v-for="head in props.headers">{{ head.text.toUpperCase() }}
      </template>
    </v-data-table>
  </v-app>
</div>


new Vue({
  el: '#app',
  vuetify: new Vuetify(),
  data: () => ({
    headers: [
      {
        text: 'Dessert (100g serving)',
        align: 'start',
        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%',
      },
      {
        name: 'Eclair',
        calories: 262,
        fat: 16.0,
        carbs: 23,
        protein: 6.0,
        iron: '7%',
      },
      {
        name: 'Cupcake',
        calories: 305,
        fat: 3.7,
        carbs: 67,
        protein: 4.3,
        iron: '8%',
      },
      {
        name: 'Gingerbread',
        calories: 356,
        fat: 16.0,
        carbs: 49,
        protein: 3.9,
        iron: '16%',
      },
      {
        name: 'Jelly bean',
        calories: 375,
        fat: 0.0,
        carbs: 94,
        protein: 0.0,
        iron: '0%',
      },
      {
        name: 'Lollipop',
        calories: 392,
        fat: 0.2,
        carbs: 98,
        protein: 0,
        iron: '2%',
      },
      {
        name: 'Honeycomb',
        calories: 408,
        fat: 3.2,
        carbs: 87,
        protein: 6.5,
        iron: '45%',
      },
      {
        name: 'Donut',
        calories: 452,
        fat: 25.0,
        carbs: 51,
        protein: 4.9,
        iron: '22%',
      },
      {
        name: 'KitKat',
        calories: 518,
        fat: 26.0,
        carbs: 65,
        protein: 7,
        iron: '6%',
      },
    ],
  }),
})

关于vuetify.js - 如何自定义表格标题中的所有元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61466259/

相关文章:

vue.js - Vuetify - 清除 v-text-field 时如何触发方法

css - 如何将 v-btn 放在 v-card 的中心并将其放在卡片边缘?

javascript - 创建元素后 Vuetify 滚动

vue.js - 实现 datetimepicker 来验证

javascript - 我应该如何正确使用同步修饰符和 vuetify 输入自定义事件 `@update:error` ?

vue.js - Vue 应用程序的 Electron 版本不显示 Material 图标

css - 表格宽度不是 100%

javascript - 从 Vue.js 组件数据中导入的辅助类调用函数

vue.js - 如何更新 vuetify mdi 图标? (Nuxt.js)

vue.js - 如何更改 v-slider 的大小?