1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-25 11:06:38 +08:00
2017-07-12 13:20:32 +08:00

26 lines
452 B
Vue

<template>
<div class="components-container" style='height:100vh'>
<div class='chart-container'>
<mix-chart id='apple' 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>