From a3e249b9c5e9b7ac0778722fd4ab986d65455a83 Mon Sep 17 00:00:00 2001 From: guerler Date: Thu, 7 Nov 2024 13:56:05 +0300 Subject: [PATCH] Attach config to incoming data attribute --- docs/public/react.svg | 60 +-------------------------------- src/App.vue | 4 +-- src/components/GalaxyCharts.vue | 8 ++--- src/main.js | 27 +++++++++------ src/utilities/parseIncoming.ts | 4 +-- 5 files changed, 24 insertions(+), 79 deletions(-) diff --git a/docs/public/react.svg b/docs/public/react.svg index b295183..6c87de9 100644 --- a/docs/public/react.svg +++ b/docs/public/react.svg @@ -1,59 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 52a0a69..59ed075 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,13 +3,13 @@ import { GalaxyCharts } from "galaxy-charts"; import Plugin from "./Plugin.vue"; defineProps<{ - config: object; + credentials?: RequestCredentials; xml: string; }>();