vue2组件引入错误

发布时间:2023年12月20日

问题描述

import CategoryList from '@/components/CategoryList/index.vue'

? components: {CategoryList},

使用以上代码正常引入?但是代码提醒没有任何反应

并且控制台显示

Unknown custom element: <Category> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

查找了一堆资料发现有可能是??

异步引入产生的组件延迟引入,一个同步异步问题。

需要采用

const CategoryList=()=>import('@/components/CategoryList/index.vue')

这样引入才会有效果

文章来源:https://blog.csdn.net/a99101/article/details/135110986
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。