Nuxt 3 based smooth signature drawing component ✨
npm install nuxt-signature-pad

- Draw seamless arts in your Nuxt 3 application effortlessly.
1. Install the module in your Nuxt application with one command:
``bash`
npx nuxi@latest module add nuxt-signature-pad
2. Add Typescript as a dev dependency by running the command below:
`bash`
npm install --save-dev typescript
That's it! You can now use nuxt-signature-pad in your Nuxt application ✨
You can use the nuxt-signature-pad component as shown below:
`vue
:min-width="options.minWidth" :options="{
penColor: options.penColor, backgroundColor: options.backgroundColor,
}"
/>
`
You can check out all the available props and methods here
Local development
`bash``
# 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