Skip to content
Snippets Groups Projects
VisualizationView.vue 860 B
Newer Older
  • Learn to ignore specific revisions
  • Cee Nell's avatar
    Cee Nell committed
    <template>
    
      <section id="visualization">
    
    Cee Nell's avatar
    Cee Nell committed
        <BeeswarmChart /> 
    
        <NarrativeIntro />
    
    Cee Nell's avatar
    Cee Nell committed
        <InteractiveDendrogram />
    
        <Conclusion />
    
        <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'
    
    Cee Nell's avatar
    Cee Nell committed
      import BeeswarmChart from '../components/BeeswarmChart.vue'
    
    Cee Nell's avatar
    Cee Nell committed
      import InteractiveDendrogram from '.././components/InteractiveDendrogram.vue'
    
      import Maps from '.././components/Maps.vue'
    
      import Conclusion from '.././components/Conclusion.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{
    
    Cee Nell's avatar
    Cee Nell committed
        padding: 0rem 0rem 0rem 0rem;
    
    Clarke, Aileen's avatar
    Clarke, Aileen committed
    </style>