exportdefault{modules:['vue3-carousel-nuxt'],carousel:{prefix:'MyPrefix'}} This will allow you to use the components with a prefix, like so:<MyPrefixCarousel />,<MyPrefixSlide />, etc. Styling The module automa
// nuxt.config.ts export default defineNuxtConfig({ devtools: { enabled: true }, ..., modules: [ 'vue3-carousel-nuxt' ] }) //App.vue <template> <Carousel v-bind="settings" :breakpoints="breakpoints"> <Slide v-for="slide in 10" :key="slide"> {{ slide }} </Slide> <template...