Skip to content

Instantly share code, notes, and snippets.

@stuart-haas
Created September 25, 2021 19:57
Show Gist options
  • Save stuart-haas/347988750e561a2a01c7afb303db5304 to your computer and use it in GitHub Desktop.
Save stuart-haas/347988750e561a2a01c7afb303db5304 to your computer and use it in GitHub Desktop.
Nuxt modal plugin
export default (context, inject) => {
const dialog = {
open: (options) => {
window.$nuxt.$emit('dialog', { ...options, open: true });
},
close: (options) => {
window.$nuxt.$emit('dialog', { ...options, open: false });
}
};
inject('dialog', dialog);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment