vue2组件引入错误

问题描述

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

  components: {CategoryList},

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

并且控制台显示

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

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

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

需要采用

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

这样引入才会有效果

你可能感兴趣的:(vue,前端,javascript)