From afadeed8620109d5ef7de70fb0e21f9743b827f1 Mon Sep 17 00:00:00 2001 From: guerler Date: Sat, 31 Aug 2024 15:00:56 +0300 Subject: [PATCH] Rename ViewPort component to GalaxyCharts --- example/README.md | 4 ++-- example/package.json | 2 +- example/src/App.vue | 6 +++--- lib/galaxy-charts.js | 2 +- src/App.vue | 6 +++--- src/components/{ViewPort.vue => GalaxyCharts.vue} | 0 6 files changed, 10 insertions(+), 10 deletions(-) rename src/components/{ViewPort.vue => GalaxyCharts.vue} (100%) diff --git a/example/README.md b/example/README.md index 1511959..ca62147 100644 --- a/example/README.md +++ b/example/README.md @@ -1,5 +1,5 @@ -# Vue 3 + Vite +# Galaxy Charts Example -This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` diff --git a/lib/galaxy-charts.js b/lib/galaxy-charts.js index 9e1ef0c..682f87d 100644 --- a/lib/galaxy-charts.js +++ b/lib/galaxy-charts.js @@ -1,4 +1,4 @@ export { useColumnsStore } from "@/store/columnsStore"; export { useConfigStore } from "@/store/configStore"; -export { default as ViewPort } from "@/components/ViewPort.vue"; \ No newline at end of file +export { default as GalaxyCharts } from "@/components/GalaxyCharts.vue"; \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 517fb19..801182c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@ diff --git a/src/components/ViewPort.vue b/src/components/GalaxyCharts.vue similarity index 100% rename from src/components/ViewPort.vue rename to src/components/GalaxyCharts.vue