@gabortorma/nuxt-vuetify3-dialog
TypeScript icon, indicating that this package has built-in type declarations

1.2.9 • Public • Published

Nuxt Vuetify3 Dialog module

npm version npm downloads License Nuxt code style

Nuxt module for implementing vuetify3-dialog

Features

Lite module working with Vuetify, allowing you to show dialogs or snackbars programatically.

See the original plugin vuetify3-dialog

Quick Setup

  1. Add nuxt-veutify3-dialog dependency to your project
# Using pnpm
pnpm add -D @gabortorma/nuxt-vuetify3-dialog

# Using yarn
yarn add --dev @gabortorma/nuxt-vuetify3-dialog

# Using npm
npm install --save-dev @gabortorma/nuxt-vuetify3-dialog
  1. Add @gabortorma/nuxt-vuetify3-dialog to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: ['@gabortorma/nuxt-vuetify3-dialog', 'vuetify-nuxt-module'],
  vuetifyDialog: {
    defaults: {
      // You can pass default options for dialogs, dialog's card, snackbars or bottom-sheets here
    },
    debug: true, // default: false
    verbose: true, // default: false
  },
})

That's it! You can now use Vuetify3 Dialog Module in your Nuxt app ✨

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release

Readme

Keywords

none

Package Sidebar

Install

npm i @gabortorma/nuxt-vuetify3-dialog

Weekly Downloads

6

Version

1.2.9

License

MIT

Unpacked Size

8.92 kB

Total Files

11

Last publish

Collaborators

  • gabortorma