diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 19:33:33 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 19:33:33 +0000 |
| commit | bd26b2800e2675613c6990673ad0b7b5175aa841 (patch) | |
| tree | 26d1a89d9ed60ad73a82fbe3371d8c58578702f5 /plugins | |
| parent | 825d2cadee4ddf34d0dde8c278fc8e8a99e95b95 (diff) | |
Add zip export
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/jszip.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/jszip.ts b/plugins/jszip.ts new file mode 100644 index 0000000..edf0206 --- /dev/null +++ b/plugins/jszip.ts @@ -0,0 +1,5 @@ +import JSZip from "jszip" + +export default defineNuxtPlugin((nuxtApp) => { + nuxtApp.vueApp.use(JSZip) +}) |
