diff --git a/app/components/SignaturePad.vue b/app/components/SignaturePad.vue new file mode 100644 index 0000000..afc7404 --- /dev/null +++ b/app/components/SignaturePad.vue @@ -0,0 +1,181 @@ + + + + + \ No newline at end of file diff --git a/app/pages/keepalive/index.vue b/app/pages/keepalive/index.vue index 5395772..75b53cf 100644 --- a/app/pages/keepalive/index.vue +++ b/app/pages/keepalive/index.vue @@ -1,21 +1,17 @@ - - + + \ No newline at end of file diff --git a/app/plugins/vconsole.client.ts b/app/plugins/vconsole.client.ts new file mode 100644 index 0000000..14e98f5 --- /dev/null +++ b/app/plugins/vconsole.client.ts @@ -0,0 +1,8 @@ +import VConsole from 'vconsole' + +export default defineNuxtPlugin(() => { + if (process.env.NODE_ENV !== 'production') { + const vConsole = new VConsole() + console.log('VConsole is enabled') + } +}) \ No newline at end of file