Failed to resolve import "~/components/HelpHint/HelpHint.vue" from "src\views\goods\goods\index.vue". Does the file exist?
时间: 2023-12-14 08:03:23 浏览: 120
Vue.js报错Failed to resolve filter问题的解决方法
5星 · 资源好评率100%
这个错误提示是因为路径引用问题导致的,可能是路径写错或者文件不存在。你可以检查一下路径和文件是否都正确无误,或者尝试重新引用此文件。另外,如果你使用的是Vue CLI创建的项目,也可以尝试使用@代替路径来引用此文件,例如import HelpHint from '@/components/HelpHint/HelpHint.vue'。
阅读全文