Skip to content
Snippets Groups Projects
Commit 3f5efd36 authored by Cee Nell's avatar Cee Nell
Browse files

fix component names

parent d9fa9647
No related branches found
No related tags found
1 merge request!69Lazy load components
......@@ -16,15 +16,15 @@
// Lazy load components using dynamic imports
import { defineAsyncComponent } from 'vue';
const VizTitle = () => import('../components/VizTitle.vue');
const VizTitle = defineAsyncComponent(() => import('../components/VizTitle.vue'));
const BeeswarmChart = defineAsyncComponent(() => import('../components/BeeswarmChart.vue'));
const NarrativeIntro = defineAsyncComponent(() => import('../components/NarrativeIntro.vue'));
const InteractiveDendrogram = defineAsyncComponent(() => import('../components/InteractiveDendrogram.vue'));
const MapsSection = defineAsyncComponent(() => import('../components/MapsSection.vue'));
const ConclusionSection = defineAsyncComponent(() => import('../components/ConclusionSection.vue'));
const AboutTheTeam = defineAsyncComponent(() => import('../components/AboutTheTeam.vue'));
const ReferencesSection = defineAsyncComponent(() => import('../components/References.vue'));
const AuthorshipSection = defineAsyncComponent(() => import('../components/Authorship.vue'));
const ReferencesSection = defineAsyncComponent(() => import('../components/ReferencesSection.vue'));
const AuthorshipSection = defineAsyncComponent(() => import('../components/AuthorshipSection.vue'));
const circleData = [
{ name: "Oronde Drakes", link: "https://www.usgs.gov/staff-profiles/oronde-drakes", image: "https://hazards.colorado.edu/api/v2/uploads/avatar/oronde_drakes2-1556849997156.JPG" },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment