Skip to content
New issue

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

Nuxt 3 Support #66

Open
MerelyPerfect opened this issue Apr 1, 2023 · 1 comment
Open

Nuxt 3 Support #66

MerelyPerfect opened this issue Apr 1, 2023 · 1 comment

Comments

@MerelyPerfect
Copy link

Can it support Nuxt 3 to re-use it as a component or plugin?

Providing some example code/app would be helpful.

@xelaris
Copy link

xelaris commented Apr 28, 2023

I'm not sure about SSR, but in general it's as simple as adding such plugin file:

// plugins/vue-silentbox.ts
import VueSilentbox from 'vue-silentbox';
import 'vue-silentbox/dist/style.css';

export default defineNuxtPlugin((nuxtApp) => {
  nuxtApp.vueApp.use(VueSilentbox);
});

to be able to use the component like this:

<template>
  <silent-box :gallery="items" />
</template>

https://nuxt.com/docs/guide/directory-structure/plugins#vue-plugins

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants