vue-awesome-swiper icon indicating copy to clipboard operation
vue-awesome-swiper copied to clipboard

NUXT build - white screen instead of slider

Open UtopiaBe opened this issue 3 years ago • 1 comments

Hello, like i said in the title - after a successful build - i have white screen, i can see the navigations (left, right) but no content where sliders should be.

my plugin: `import Vue from 'vue' import VueAwesomeSwiper from 'vue-awesome-swiper'

import 'swiper/css/swiper.css'

Vue.use(VueAwesomeSwiper)`

UtopiaBe avatar May 20 '21 12:05 UtopiaBe

This is the v-swiper.js (plugin) that works for me:

import { Swiper, EffectFade } from 'swiper' import Vue from 'vue' import VueAwesomeSwiper from 'vue-awesome-swiper' import 'swiper/swiper-bundle.css'

Swiper.use([EffectFade]) Vue.use(VueAwesomeSwiper)

Beethoven avatar May 21 '21 19:05 Beethoven