Skip to content
Snippets Groups Projects
VisualizationView.vue 812 B
Newer Older
  • Learn to ignore specific revisions
  • Cee Nell's avatar
    Cee Nell committed
    <template>
    
      <section id="visualization">
    
        <NarrativeIntro />
    
        <BubbleChart />
    
        <Dendrogram />
        <Maps />
    
        <Beeswarm />
    
        <ReferencesSection />
        <AuthorshipSection />
    
    Cee Nell's avatar
    Cee Nell committed
      </section>
    </template>
    
    <script setup>
    
      import VizTitle from '.././components/VizTitle.vue'
    
      import NarrativeIntro from '.././components/NarrativeIntro.vue'
    
      import BubbleChart from '../components/BubbleChart.vue'
      import Beeswarm from '../components/Beeswarm.vue'
    
      import Dendrogram from '.././components/Dendrogram.vue'
    
      import Maps from '.././components/Maps.vue'
    
      import ReferencesSection from '.././components/References.vue'
      import AuthorshipSection from '.././components/Authorship.vue'
    
    Cee Nell's avatar
    Cee Nell committed
    </script>
    
    
    <style lang="scss" scoped>
      #visualization{
        padding: 6rem 0rem 5rem 0rem;
    
    
    Clarke, Aileen's avatar
    Clarke, Aileen committed
    </style>