From 1f157f8d966e523b12da53040376dfa1185a0a38 Mon Sep 17 00:00:00 2001 From: Phillip Cabrera Date: Wed, 12 Oct 2022 21:02:59 -0400 Subject: [PATCH] Social Sharing File Created --- src/boot/socialSharing.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/boot/socialSharing.js diff --git a/src/boot/socialSharing.js b/src/boot/socialSharing.js new file mode 100644 index 0000000..87d04a3 --- /dev/null +++ b/src/boot/socialSharing.js @@ -0,0 +1,7 @@ +// "async" is optional; +// more info on params: https://quasar.dev/quasar-cli/cli-documentation/boot-files#Anatomy-of-a-boot-file + +import VueSocialSharing from "vue-social-sharing"; +export default ({ app }) => { + app.use(VueSocialSharing); +};