mixChart.vue 452 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="components-container" style='height:100vh'>
  3. <div class='chart-container'>
  4. <mix-chart id='apple' height='100%' width='100%'></mix-chart>
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. import mixChart from 'components/Charts/mixChart';
  10. export default {
  11. components: { mixChart }
  12. };
  13. </script>
  14. <style scoped>
  15. .chart-container{
  16. position: relative;
  17. width: 100%;
  18. height: 90%;
  19. padding-bottom: 40px;
  20. }
  21. </style>