keyboard2.vue 453 B

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