我正在尝试使用vuetify(首次用户),我想使用vuetify添加数据表。但是,当我从文档中添加示例时,两次出现两个错误:
[Vue warn]: Error in render: "TypeError: Cannot read property 'width' of undefined"
found in
---> <VData>
<VDataTable>
<VCard>
<VueDataTable> at Content/js/vue/components/datatable/VueDataTable.vue
<IvrList> at Content/js/vue/components/ivr/IVRList.vue
<Root>
-
TypeError: Cannot read property 'width' of undefined
at VueComponent.isMobile (vuetify.js:9076)
at Watcher.get (vue.runtime.esm.js:4473)
at Watcher.evaluate (vue.runtime.esm.js:4578)
at VueComponent.computedGetter [as isMobile] (vue.runtime.esm.js:4830)
at VueComponent.genHeaders (vuetify.js:9193)
at VueComponent.genDefaultScopedSlot (vuetify.js:9498)
at Object.normalized [as default] (vue.runtime.esm.js:2590)
at Proxy.render (vuetify.js:8007)
at VueComponent.Vue._render (vue.runtime.esm.js:3542)
at VueComponent.updateComponent (vue.runtime.esm.js:4060)
代码非常简单(我认为)
<template>
<v-card>
<v-card-title>
Nutrition
<div class="flex-grow-1"></div>
<v-text-field v-model="search" append-icon="search" label="Search" single-line hide-details></v-text-field>
</v-card-title>
<v-data-table :headers="headers" :items="desserts" :search="search"></v-data-table>
</v-card>
</template>
<script>
import "vuetify";
export default {
components: {},
data() {
return {
search: "",
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%"
}
]
};
},
computed: {},
created() {
// eslint-disable-next-line no-console
console.log("VueTable created");
},
mounted() {},
methods: {}
};
</script>
<style scoped>
.flex-grow-1 {
flex-grow: 1;
}
</style>
我几乎逐行从vuetify复制了它。为什么会出现上述错误?似乎很奇怪(通用)。有想法吗?
看起来这是一个已知错误,到目前为止尚未修复:(
答案 0 :(得分:2)
我通过将vuetify: new Vuetify()
添加到以下方式来解决此问题:
const app = new Vue({
vuetify: new Vuetify(),
el: '#app',
router: Routes,
render: h => h(App),
});
在此处了解更多信息:https://vuetifyjs.com/getting-started/releases-and-migrations
答案 1 :(得分:0)
您可以尝试使用“ vue add vuetify ”命令代替安装软件包吗,我通过执行此操作解决了类似的问题。