Vue中"This dependency was not found"问题的解决方法

网友投稿 1535 2023-01-28


Vue中"This dependency was not found"问题的解决方法

今天在初始化项目中,出现了一个奇怪的情况:明明路径是对的,但是编译的时候,一直报“This dependency was not found”的错。

代码如下:

import Vue from 'vue'

import App from './App'

import router from './router'

import 'common/stylus/index.styl'

/* eslint-disable no-new */

new Vue({

el: '#app',

render: h => h(App)

})

控制台一直报错,表示无法找到chttp://ommon/stylus/index.styl,然而,路径是通过ide补全填写的,不可能出现错误,那又是为什么?

在网上多番搜索发现,Vue中的引入文件时,需要通过./通知编译器是在当前路径,不然的话,第一个文件夹名会被认为是webpack配置的alias(别名)。

所以,正确引入index.styl的方式是:

import Vue from 'vue'

import App from './App'

import router from './router'

import './common/stylus/index.styl' // 添加./避免编译器认为是别名

/* eslint-disable no-new */

new Vue({

el: '#app',

render: h => h(App)

})

总结

以上所述是给大家介绍的Vue中"This dependency was not found"的问题的解决方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java使用Thread创建多线程并启动操作示例
下一篇:关于共享文件系统是什么的信息
相关文章

 发表评论

暂时没有评论,来抢沙发吧~