我在使用vue和vue-bulma-tabs时遇到了这个奇怪的错误。
Project is running at http://localhost:8081/
webpack output is served from /dist/
404s will fallback to /index.html
crypto.js:74
this._handle.update(data, encoding);
^
TypeError: Data must be a string or a buffer
at TypeError (native)
at Hash.update (crypto.js:74:16)
at HarmonyExportImportedSpecifierDependency.updateHash (/Users/esteban/Projects/experiments/example1/node_modules/webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js:144:8)
at /Users/esteban/Projects/experiments/example1/node_modules/webpack/lib/DependenciesBlock.js:33:5
at Array.forEach (native)
at NormalModule.DependenciesBlock.updateHash (/Users/esteban/Projects/experiments/example1/node_modules/webpack/lib/DependenciesBlock.js:32:20)
at NormalModule.Module.updateHash (/Users/esteban/Projects/experiments/example1/node_modules/webpack/lib/Module.js:162:41)
at NormalModule.updateHash (/Users/esteban/Projects/experiments/example1/node_modules/webpack/lib/NormalModule.js:327:30)
at modules.forEach.m (/Users/esteban/Projects/experiments/example1/node_modules/webpack/lib/Chunk.js:253:31)
at Array.forEach (native)
我认为与webpack有关,但我不知道问题是什么或如何解决它。
重现它,就这样做
vue init webpack-simple example1
cd example1
npm i
npm i -S bulma vue-bulma-tabs
然后将其添加到main.js文件
import {Tabs, TabPane} from 'vue-bulma-tabs'
然后运行
npm run dev
etvoilà!有错误。我错过了什么?
答案 0 :(得分:7)
因此,此问题的根本原因是导致找不到您尝试导入的文件。有关解决方法的信息,请参阅https://github.com/webpack/webpack/issues/4072#issuecomment-278626604以添加一些日志记录,以帮助您找到无法导入的文件。
答案 1 :(得分:1)
我发现了这个问题,但我不确定它是谁的错。
vue-bulma-tabs使用导入而不使用Vue文件的扩展名。但是来自vue的webpack-simple模板不支持。
解决方案是配置webpack以尝试.vue和.js 在解决密钥下的webpack.config.js上,添加
extensions: ['.js', '.vue']
现在正在运作。