We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, is there a way to use cue-slick-carousel in Nuxt 3? I've been trying for a while without success.
The error I'm getting is:
[nitro] [dev] [unhandledRejection] TypeError: Invalid value used as weak map key
my current setup is:
import {defineNuxtPlugin} from "#app"; import VueSlickCarousel from "vue-slick-carousel"; import 'vue-slick-carousel/dist/vue-slick-carousel-theme.css' import 'vue-slick-carousel/dist/vue-slick-carousel.css' export default defineNuxtPlugin(nuxtApp => { // Doing something with nuxtApp nuxtApp.vueApp.use(VueSlickCarousel) }) ``` # in Index.vue
The text was updated successfully, but these errors were encountered:
Also if import it directly in a vue component, I get another error: [nuxt] [request error] Cannot read properties of undefined (reading 'prevArrow')
Sorry, something went wrong.
Looks like only Vue 2 is supported, this wont work with nuxt 3 as nuxt 3 uses vue 3
No branches or pull requests
Hi,
is there a way to use cue-slick-carousel in Nuxt 3? I've been trying for a while without success.
The error I'm getting is:
[nitro] [dev] [unhandledRejection] TypeError: Invalid value used as weak map key
my current setup is:
in plugins/vueSlickCarousel.js
The text was updated successfully, but these errors were encountered: