vue-glide-js with nuxt 3
Hello
I am having issue with vue-glide-js package while using with nuxt 3, it is working on the nuxt 2
Uncaught (in promise) TypeError: this.$slots.default.filter is not a function at Proxy.render2 (vue-glide-js.js?v=99a83b85:2794:48)
Is there anything we need to change I have added the vue-glide-js into the plugins
import { Glide, GlideSlide } from 'vue-glide-js';
import 'vue-glide-js/dist/vue-glide.css';
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.component('VueGlide', Glide);
nuxtApp.vueApp.component('VueGlideSlide', GlideSlide);
});
0 Replies