Skip to content
Snippets Groups Projects
VisualizationView.vue 658 B
Newer Older
  • Learn to ignore specific revisions
  • Cee Nell's avatar
    Cee Nell committed
    <template>
      <section>
        <h1 class="section-header">svg import w/ d3-added interaction + v-for</h1>
        <RegionalViolins />
        <h1 class="section-header">d3 bar chart from data</h1>
        <BarChartExample />
    
        <ReferencesSection />
        <AuthorshipSection />
    
    Cee Nell's avatar
    Cee Nell committed
      </section>
    </template>
    
    <script setup>
    
      import RegionalViolins from '.././components/RegionalViolins.vue'
      import BarChartExample from '.././components/BarChartExample.vue'
      import ReferencesSection from '.././components/References.vue'
      import AuthorshipSection from '.././components/Authorship.vue'
    
    Cee Nell's avatar
    Cee Nell committed
    </script>
    
    <style scoped>
    
      .section-header {
        color: var(--dodger-blue);
      }
    </style>