我正在尝试在我的nativescript / vue-cli app中使用nativescript-sound包。我使用
安装nativescript-soundnpm install --save nativescript-sound
安装完毕后我运行npm clean,然后尝试在项目的main.js文件中调用nativescript-sound
require("nativescript-vue").registerElement("sound", () => require("nativescript-sound").sound);
当我尝试运行时
npm run watch:android
编译器显示错误。
错误
ERROR in ./src/main.js
Module not found: Error: Can't resolve 'nativescript-sound' in
'/home/darahat/Desktop/Rhymes/src'
@ ./src/main.js
答案 0 :(得分:0)
我换了 node_modules / nativescript-sound / package.json
"main": "sound.js",
到
"main": "sound",
并且有效!
let Sound = require("nativescript-sound");