gpt4 book ai didi

vuetify.js - Vuetify 数据表每页行数不起作用

转载 作者:行者123 更新时间:2023-12-02 20:25:24 29 4
gpt4 key购买 nike

Here is the problem and how this shows inside component我从 Vuetify 导入了数据表组件,除了 Rows per page 部分之外,它工作正常。它不会打开应包含 [5, 10, 20] 的列表来重新组织数据表。

照片中的更新这是错误,选项列表显示在另一个地方。

我检查了我的代码,没有任何内容。因此,我删除了整个组件,并将其替换为 docs 中提供的基本示例。但仍然是同样的问题。

<template>
<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>

代码脚本部分是

<script>
export default {
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%'
},
{
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%'
}
]
}
}
}
</script>

我应该重新检查什么?

最佳答案

当模板不在 <v-app> 内时,就会发生此行为元素。主要app.vue ,从中调用组件,该组件使用 <v-data-table> ,用 <v-app> 封装和<v-content> :

<template>
<div id="app">
<v-app>
<v-content>
<myComponent></myComponent>
</v-content>
</v-app>
</div>
</template>

与 vuetify 教程进行比较,例如a random tutorial .

如果 top ,下拉菜单 css 类位置( left<v-app> )似乎是相对于分页元素的。如果数据表封装正确,则缺失且相对于 vuetify 表的 0 位置(左上角)。

关于vuetify.js - Vuetify 数据表每页行数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55793283/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com