Open uzzal-ht opened 4 years ago
@uzzal-ht you need to create a plugin called vuebacktotop.js
in your plugins folder.
Add the following content to the file:
import Vue from 'vue'
import BackToTop from 'vue-backtotop'
Vue.use(BackToTop)
Then add this to the plugins section of your nuxt.config.js
:
plugins: [
{ src: '~plugins/vue-backtotop.js', ssr: false } // add this line
]
How to use with Nuxt JS ? Can anyone share an example code?