I am trying to use AOS in my Nuxt project in "universal" mode but I am experiencing an issue when I switch pages. The tool works fine when I manually reload the page but for some reason AOS stops working when I switch between pages. For example, on my homepage I have text fading up and when I first get to the homepage, it works when I scroll that element into view. However, if I navigate away from the homepage and then go back to the homepage at some point, the text no longer fades up and stays hidden or opacity at zero.
Here is the aos.js
plugin in my project's plugin directory
import Vue from 'vue'
import AOS from 'aos'
import 'aos/dist/aos.css'
Vue.use(AOS.init())
Here is the plugins array in nuxt.config.js
plugins: [
{ src: '~plugins/aos', ssr: false, mode: 'client' },
],
Here is the HTML element in my Vue component.
<div
:class="{
'py-6': true,
'px-6': !isMobile,
'px-0': isMobile,
}"
data-aos="fade-up"
data-aos-duration="1000"
>
...content in here...
</div>
Any help would be greatly appreciated. Thanks.
The accepted answer is not valid anymore for newer Nuxt versions. You will have to disable SSR for libraries that deal with the browser
window
in Nuxt. You can read more about this https://nuxtjs.org/docs/directory-structure/plugins/#client-or-server-side-only