modules: [
// https://go.nuxtjs.dev/axios
'@nuxtjs/axios',
'nuxt-swiper',
'@nuxt/image',
'@fullpage/nuxt-fullpage',
],
I have installed it and that’s how I linked it to my ‘nuxt.config.js’
<template>
<div class="content">
<full-page
:options="{
licenseKey: null,
css3: true,
menu: '#navigation',
anchors: ['home', 'services', 'pictures', 'prices', 'contact'],
}"
>
<div id="section">
<div data-anchor="home">
<HomeBanner />
</div>
<div data-anchor="services">
<HomeProductsTabsComponent/>
</div>
<div data-anchor="pictures">
<Experience/>
</div>
</div>
</full-page>
</div>
</template>
that’s how i am using it but there’s no section is displaying on my page
Make sure to check the official Nuxt module for fullPage.js
Any errors/warnings in the console? Have you set a license? alvarotrigo.com/fullPage/pricing
no errors. Is it paid ?
Check the plugin page, there are indeed some specific license needs.