24 lines
436 B
Vue
24 lines
436 B
Vue
<template>
|
|
<div class="components-container" style='height:100vh'>
|
|
<div class='chart-container'>
|
|
<keyboardChart height='100%' width='100%' />
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import keyboardChart from 'components/Charts/keyboard';
|
|
|
|
export default {
|
|
components: { keyboardChart }
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.chart-container{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 90%;
|
|
}
|
|
</style>
|
|
|