admin-fe/src/views/charts/keyboard.vue

25 lines
420 B
Vue

<template>
<div class="components-container" style='height:100vh'>
<div class='chart-container'>
<chart height='100%' width='100%'></chart>
</div>
</div>
</template>
<script>
import Chart from '@/components/Charts/keyboard'
export default {
name: 'keyboardChart',
components: { Chart }
}
</script>
<style scoped>
.chart-container{
position: relative;
width: 100%;
height: 90%;
}
</style>