Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.74 KB

README.md

File metadata and controls

63 lines (38 loc) · 1.74 KB

Nuxt Signature Draw and Download Example

This Application demonstrates how to integrate signature drawing and download functionality into a Nuxt.js 3 application using the Vue Canvas Drawing library.

Signature Draw and Download

In this Application, users can draw their signatures directly onto a canvas element. The Vue Canvas Drawing library provides a user-friendly interface for creating signatures with features like pen thickness and color selection.

Once users are satisfied with their signature, they can easily download it as an image file. The application dynamically converts the canvas content into a downloadable image, allowing users to save their signatures locally for various purposes.

Deploy with Vercel

_Live Example: https://nuxtjs-template.vercel.app_

Look at the Nuxt 3 documentation to learn more.

Clone repo

git clone https://github.com/PreciousGariya/nuxtjsSignatureApp.git

Setup

Make sure to install the dependencies:

# yarn
yarn

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Development Server

Start the development server on http://localhost:3000

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build: image

npm run preview

Checkout the deployment documentation for more information.