0👍
You don’t appear to be using the vue-fullpage.js library according to their guide.
They provide the library as a Vue plugin so you need to use it in your root Vue
instance, eg
// main.js or whatever
import Vue from 'vue'
import VueRouter from 'vue-router'
import VueFullPage from 'vue-fullpage.js'
Vue.use(VueRouter) // Note: Do NOT try and pass in multiple plugins
Vue.use(VueFullPage)
This will install the full-page
component globally so you don’t need to import it into your component.
👤Phil
Source:stackexchange.com