VUE报错解决方法 Unknown custom element: <FileSidebar> - did you register the component correctly? Fo

2021/4/30 18:25:16

本文主要是介绍VUE报错解决方法 Unknown custom element: <FileSidebar> - did you register the component correctly? Fo,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

vue在组件引入组件时写成了

import {FileSidebar} from "@/components/FileSidebar/index";

会报Unknown custom element: <FileSidebar> - did you register the component correctly? For recursive components, make sure to provide the "name" option.的错误。

一开始误以为是命名的问题。百度大部分都是这方面的解释。当排除所有可能的问题后才发现......

正确写法应为

import FileSidebar from "@/components/FileSidebar/index";

 

以前犯的一个初级错误,因为当时百度上没看到解决方法。记录一下希望对遇到同样问题的同学有帮助。



这篇关于VUE报错解决方法 Unknown custom element: <FileSidebar> - did you register the component correctly? Fo的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程