Skip to content

Commit

Permalink
Merge pull request #4 from selemondev/refactor/playground
Browse files Browse the repository at this point in the history
refactor: playground
  • Loading branch information
selemondev authored Jul 7, 2024
2 parents 6567c5f + e37095a commit f3c9aa9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 13 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog


## v1.1.0


### 🚀 Enhancements

- Add Draw func ([7a49de2](https://github.com/selemondev/nuxt-signature-pad/commit/7a49de2))

### 💅 Refactors

- Github workflows ([fcd9cc1](https://github.com/selemondev/nuxt-signature-pad/commit/fcd9cc1))

### 🏡 Chore

- Lint ([67668d0](https://github.com/selemondev/nuxt-signature-pad/commit/67668d0))

### ❤️ Contributors

- Selemondev <[email protected]>

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-signature-pad",
"version": "1.0.0",
"version": "1.1.0",
"description": "Nuxt 3 based smooth signature drawing",
"packageManager": "[email protected]",
"repository": "selemondev/nuxt-signature-pad",
Expand Down
22 changes: 10 additions & 12 deletions playground/app.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
<template>
<ClientOnly>
<NuxtSignaturePad
ref="signature"
height="400px"
width="950px"
:max-width="options.maxWidth"
:min-width="options.minWidth"
:options="{
penColor: options.penColor, backgroundColor: options.backgroundColor,
}"
/>
</ClientOnly>
<NuxtSignaturePad
ref="signature"
height="400px"
width="950px"
:max-width="options.maxWidth"
:min-width="options.minWidth"
:options="{
penColor: options.penColor, backgroundColor: options.backgroundColor,
}"
/>
</template>

<script setup>
Expand Down

0 comments on commit f3c9aa9

Please sign in to comment.