你瞅啥呢

2024-10-24 A plugin must either be a function or an object with an "install" function.

我在把一个组件注册到全局的时候遇到了这个警告,并且这个组件是没有生效的

原因:仅引用了组件的地址,最后使用app.user(组件),并没有给组件注册

解决方案:给组件注册,例如👇

import Item from "./index.vue";

Item.install = app => {
    app.component(Item.name, Item);
};

export default Item;

然后再use即可

posted @ 2024-10-24 14:30  叶乘风  阅读(92)  评论(0编辑  收藏  举报