aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-13 19:33:33 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-13 19:33:33 +0000
commitbd26b2800e2675613c6990673ad0b7b5175aa841 (patch)
tree26d1a89d9ed60ad73a82fbe3371d8c58578702f5 /plugins
parent825d2cadee4ddf34d0dde8c278fc8e8a99e95b95 (diff)
Add zip export
Diffstat (limited to 'plugins')
-rw-r--r--plugins/jszip.ts5
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)
+})