Skip to content
Snippets Groups Projects
VisualizationView.vue 232 B
Newer Older
  • Learn to ignore specific revisions
  • Cee Nell's avatar
    Cee Nell committed
    <template>
      <section>
    
        <BeeswarmChart />
    
    Cee Nell's avatar
    Cee Nell committed
      </section>
    </template>
    
    <script setup>
    
      import BeeswarmChart from '../components/BeeswarmChart.vue';
    
    Cee Nell's avatar
    Cee Nell committed
    </script>
    
    <style scoped>
    .section-header {
      color: var(--dodger-blue);
    }
    </style>