line.vue 354 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="chart-container">
  3. <chart height="100%" width="100%" />
  4. </div>
  5. </template>
  6. <script>
  7. import Chart from '@/components/Charts/LineMarker'
  8. export default {
  9. name: 'LineChart',
  10. components: { Chart }
  11. }
  12. </script>
  13. <style scoped>
  14. .chart-container{
  15. position: relative;
  16. width: 100%;
  17. height: calc(100vh - 84px);
  18. }
  19. </style>