1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-24 10:36:22 +08:00
2017-08-23 11:16:54 +08:00

26 lines
431 B
Vue

<template>
<div class="components-container" style='height:100vh'>
<div class='chart-container'>
<mix-chart height='100%' width='100%'></mix-chart>
</div>
</div>
</template>
<script>
import mixChart from 'components/Charts/mixChart'
export default {
components: { mixChart }
}
</script>
<style scoped>
.chart-container{
position: relative;
width: 100%;
height: 90%;
padding-bottom: 40px;
}
</style>