我正在尝试在我的 Nuxt 项目中添加 ScollMagic,我遵循了这篇文章:https ://nuxtjs.org/guide/plugins & 我在 nuxt.config.js 中添加了 ScrollMagic.js 并且我遇到了这个问题:ReferenceError window is没有定义的。
module.exports = {
plugins: [
{ src: '~plugins/ScrollMagic', mode: 'client' }
],
}
Then I've added this snippet in my component:
import ScrollMagic from 'scrollmagic'
Run Code Online (Sandbox Code Playgroud)
我还是有这个问题...
即使像这样覆盖它:
if (process.client) {
Vue.use(ScrollMagic)
}
Run Code Online (Sandbox Code Playgroud)