Vuetify数据表操作行

时间:2019-03-22 01:36:43

标签: vue.js vuejs2 vuetify.js

是否可以使每页行数页面导航并在同一行中的位置放置一个按钮?

enter image description here

3 个答案:

答案 0 :(得分:1)

默认情况下,“操作”行右对齐。有一种方法可以实现您想要的。您可以使用自定义分页并隐藏当前页面:

 <v-data-table
    :headers="headers"
    :items="desserts"
    :search="search"
    hide-actions
    :pagination.sync="pagination"
  >

并将其添加到数据表之后:

<v-layout row justify-center>
    <v-pagination v-model="pagination.page" :length="pages"></v-pagination>
    <v-btn class="test">test</v-btn>
</v-layout>

查看更多here

这是一个Codepen正在起作用。

答案 1 :(得分:1)

CSS最简单的方法:

数据表中的模板:

<template v-slot:actions-prepend>
    <v-btn>
        Click me !
    </v-btn>
</template>

CSS:

.my-grid .v-datatable__actions > div:first-child {
   flex: 1;
}

工作片段:

new Vue({
  el: '#app',
  methods: {
    onClick() { this.dark = !this.dark; }
  },
  data: {
    dark: true,
    headers: [{
        text: 'Dessert (100g serving)',
        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%'
      }
    ]
  }
})
.my-grid .v-datatable__actions > div:first-child {
    flex: 1;
}
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify@1.x/dist/vuetify.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@1.x/dist/vuetify.js"></script>

<div id="app">
  <v-app :dark="dark">
    <v-content>
      <v-data-table :headers="headers" :items="desserts" class="my-grid">
        <template v-slot:items="{item}">
            <tr>
              <td>{{item.name}}</td>
              <td>{{item.calories}}</td>
              <td>{{item.fat}}</td>
              <td>{{item.carbs}}</td>
              <td>{{item.protein}}</td>
              <td>{{item.iron}}</td>
            </tr>
          </template>
        <template v-slot:actions-prepend>
              <v-btn @click="onClick">
                  Switch mode
              </v-btn>
          </template>
      </v-data-table>
    </v-content>
  </v-app>
</div>

答案 2 :(得分:0)

我发现最简单的方法是将按钮添加到您使用的某些数据表插槽中,然后将按钮相对于表定位。

<v-data-table
    style="position: relative;">

    <template slot="footer">
        <v-btn style="position: absolute; left: 10px; bottom: 10px;">
            test
        </v-btn>
    </template>

</v-data-table>