我用Vue.js做了一个应用程序,我正试图在Nuxt.js中适应它。对于滚动间谍,我在Vue.js中使用了Vue.js,所以我希望在Nuxt.js中也这样做。
有点像在Vue.js main.js文件中导入main.js一样,我在Nuxt中创建了一个插件来添加jQuery和require("jquery.easing"):
plugin/jqueryeasing.js
import Vue from "vue";
import jquery from "jquery";
require("jquery.easing");
Vu
在我的项目中,我在尝试引用CSS和JS文件时收到以下错误
Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:8080/bower_components/bootstrap/dist/css/bootstrap.min.css
这是我的文件结构
app
|bower_components
|bootstrap
|dist
|css
| bo