gpt4 book ai didi

javascript - Vue.js Vuetify.js - 未知自定义元素 : , 您是否正确注册了组件?

转载 作者:行者123 更新时间:2023-11-30 13:55:15 28 4
gpt4 key购买 nike

我从 Vuetify Data Iterator Filter part 复制了代码

我可以使用其他 Vuetify 组件,例如 v-btn , v-card , v-data-table , v-data-iterator

只有 <v-list-item><v-list-item-title>抛出错误。

我不知道发生了什么。

错误信息:

[Vue warn]: Unknown custom element: <v-list-item> - did you register the component correctly? For recursive components, make sure to provide the "name" option

[Vue warn]: Unknown custom element: <v-list-item-title> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

HTML:

<template>
<div class="container">
<v-container fluid grid-list-md style="padding: 0">
<v-data-iterator
:items="items"
:items-per-page.sync="itemsPerPage"
:page="page"
:search="search"
:sort-by="sortBy.toLowerCase()"
:sort-desc="sortDesc"
hide-default-footer
>
<template v-slot:header>
<v-toolbar dark color="blue darken-3" class="mb-1">
<v-text-field
v-model="search"
clearable
flat
solo-inverted
hide-details
prepend-inner-icon="search"
label="Search"
></v-text-field>
<template v-if="$vuetify.breakpoint.mdAndUp">
<v-spacer></v-spacer>
<v-select
v-model="sortBy"
flat
solo-inverted
hide-details
:items="keys"
prepend-inner-icon="search"
label="Sort by"
></v-select>
<v-spacer></v-spacer>
<v-btn-toggle v-model="sortDesc" mandatory>
<v-btn large depressed color="blue" :value="false">
<v-icon>arrow_upward</v-icon>
</v-btn>
<v-btn large depressed color="blue" :value="true">
<v-icon>arrow_downward</v-icon>
</v-btn>
</v-btn-toggle>
</template>
</v-toolbar>
</template>

<template v-slot:default="props">
<v-layout wrap>
<v-flex v-for="item in props.items" :key="item.name" xs12 sm6 md4 lg3>
<v-card>
<v-card-title class="subheading font-weight-bold">{{ item.name }}</v-card-title>

<v-divider></v-divider>

<v-list dense>
<v-list-item
v-for="(key, index) in filteredKeys"
:key="index"
:color="sortBy === key ? `blue lighten-4` : `white`"
>
<v-list-item-content>{{ key }}:</v-list-item-content>
<v-list-item-content class="align-end">{{ item[key.toLowerCase()] }}</v-list-item-content>
</v-list-item>
</v-list>
</v-card>
</v-flex>
</v-layout>
</template>

<template v-slot:footer>
<v-layout mt-2 wrap align-center justify-center>
<span class="grey--text">Items per page</span>
<v-menu offset-y>
<template v-slot:activator="{ on }">
<v-btn dark text color="primary" class="ml-2" v-on="on">
{{ itemsPerPage }}
<v-icon>keyboard_arrow_down</v-icon>
</v-btn>
</template>
<v-list>
<v-list-item
v-for="(number, index) in itemsPerPageArray"
:key="index"
@click="updateItemsPerPage(number)"
>
<v-list-item-title>{{ number }}</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>

<v-spacer></v-spacer>

<span class="mr-4 grey--text">Page {{ page }} of {{ numberOfPages }}</span>
<v-btn fab dark color="blue darken-3" class="mr-1" @click="formerPage">
<v-icon>keyboard_arrow_left</v-icon>
</v-btn>
<v-btn fab dark color="blue darken-3" class="ml-1" @click="nextPage">
<v-icon>keyboard_arrow_right</v-icon>
</v-btn>
</v-layout>
</template>
</v-data-iterator>
</v-container>
</div>
</template>

JS:

export default {
data() {
return {
itemsPerPageArray: [4, 8, 12],
search: "",
filter: {},
sortDesc: false,
page: 1,
itemsPerPage: 4,
sortBy: "name",
keys: [
"Name",
"Calories",
"Fat",
"Carbs",
"Protein",
"Sodium",
"Calcium",
"Iron"
],
items: [
{
name: "Frozen Yogurt",
calories: 159,
fat: 6.0,
carbs: 24,
protein: 4.0,
sodium: 87,
calcium: "14%",
iron: "1%"
},
{
name: "Ice cream sandwich",
calories: 237,
fat: 9.0,
carbs: 37,
protein: 4.3,
sodium: 129,
calcium: "8%",
iron: "1%"
},
{
name: "Eclair",
calories: 262,
fat: 16.0,
carbs: 23,
protein: 6.0,
sodium: 337,
calcium: "6%",
iron: "7%"
},
{
name: "Cupcake",
calories: 305,
fat: 3.7,
carbs: 67,
protein: 4.3,
sodium: 413,
calcium: "3%",
iron: "8%"
},
{
name: "Gingerbread",
calories: 356,
fat: 16.0,
carbs: 49,
protein: 3.9,
sodium: 327,
calcium: "7%",
iron: "16%"
},
{
name: "Jelly bean",
calories: 375,
fat: 0.0,
carbs: 94,
protein: 0.0,
sodium: 50,
calcium: "0%",
iron: "0%"
},
{
name: "Lollipop",
calories: 392,
fat: 0.2,
carbs: 98,
protein: 0,
sodium: 38,
calcium: "0%",
iron: "2%"
},
{
name: "Honeycomb",
calories: 408,
fat: 3.2,
carbs: 87,
protein: 6.5,
sodium: 562,
calcium: "0%",
iron: "45%"
},
{
name: "Donut",
calories: 452,
fat: 25.0,
carbs: 51,
protein: 4.9,
sodium: 326,
calcium: "2%",
iron: "22%"
},
{
name: "KitKat",
calories: 518,
fat: 26.0,
carbs: 65,
protein: 7,
sodium: 54,
calcium: "12%",
iron: "6%"
}
]
// value: true
};
},
computed: {
numberOfPages() {
return Math.ceil(this.items.length / this.itemsPerPage);
},
filteredKeys() {
return this.keys.filter(key => key !== `Name`);
}
},
methods: {
nextPage() {
if (this.page + 1 <= this.numberOfPages) this.page += 1;
},
formerPage() {
if (this.page - 1 >= 1) this.page -= 1;
},
updateItemsPerPage(number) {
this.itemsPerPage = number;
}
},
};

输出截图:

如您所见,其他组件运行良好...

enter image description here


我读了Vuetify Quick Start再次确保我正确安装了 Vuetify。

下面是src\plugins\vuetify.js文件

import Vue from 'vue'
import Vuetify from 'vuetify/lib'
import 'vuetify/src/stylus/app.styl'

Vue.use(Vuetify, {
iconfont: 'md',
})

src\main.js

import Vue from "vue";
import firebase from './components/firebaseInit';
import App from "./App.vue";
import router from "./router";
import vuetify from './plugins/vuetify' // path to vuetify export

Vue.config.productionTip = false;

let app = '';

// initialize the Vue app only when we are sure Firebase is initialized
firebase.auth().onAuthStateChanged(() => {
if (!app) {
app = new Vue({
vuetify,
router,
render: h => h(App)
}).$mount("#app");

}
});

我尝试手动导入组件,但仍然出现相同的错误:

import { VListItem, VListItemTitle } from "vuetify/lib";

export default {
components: {
'v-list-item': VListItem,
'v-list-item-title': VListItemTitle
},
...
}

我也试过:

  1. 删除 .node_modules文件夹
  2. 运行 npm update
  3. 运行 npm install

还是一样的错误。我也搜索了很多相关的帖子,但没有找到。

最佳答案

原来我使用的是 "vuetify": "^1.5.16"VListItem 是在 2.0 版中引入的

将 Vuetify 更新到最新版本和 install webpack解决问题。

关于javascript - Vue.js Vuetify.js - 未知自定义元素 : <v-list-item>, <v-list-item-title> 您是否正确注册了组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57428834/

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