vinksz

Results 8 comments of vinksz

export default defineNuxtPlugin(ctx => { ctx.vueApp.use(Inkline, { components }); }); ^ export default defineNuxtPlugin((NuxtApp) => { NuxtApp.vueApp.use(Inkline, { components }); }); https://v3.nuxtjs.org/guide/going-further/internals#the-nuxtapp-interface Might need this package as well , not...

I just discovered it, what's the status of this project? does it work with vue3/nuxt3?

Look at the code of components, they clearly don't work with vue3.. this project seems abandoned anyways, 2 year sno commits, and if they even come back, they would need...

I don't use arrows but i can concur, Im using show 5 slides with autoloop.. somekind of weird twitch effect happens.

> Hello ! This is project will be add ssr mode? now we have window is not defined Nuxt provides the component for purposely rendering a component only on client...

This doesn't work with vue3?

> > > Development mode works but I get an error when building > > > > > > Has anyone managed to get this working? > > @oripka @Shmookoff...

``` export default defineNuxtPlugin((nuxtApp) => { nuxtApp.$router.options.scrollBehavior = () => { return { left: 0, top: 0 } } }) ``` Try this?