fe-drone-ci/src/views/charts/mixchart.vue

25 lines
459 B
Vue
Raw Normal View History

2017-04-19 10:43:57 +00:00
<template>
<div class="components-container" style='height:100vh'>
<div class='chart-container'>
2017-06-30 07:36:21 +00:00
<mix-chart id='apple' height='100%' width='100%'></mix-chart>
2017-04-19 10:43:57 +00:00
</div>
</div>
</template>
2017-06-14 10:02:12 +00:00
2017-04-19 10:43:57 +00:00
<script>
2017-06-30 07:36:21 +00:00
import mixChart from 'components/Charts/mixChart';
2017-04-19 10:43:57 +00:00
export default {
2017-06-30 07:36:21 +00:00
components: { mixChart }
2017-04-19 10:43:57 +00:00
};
</script>
<style scoped>
.chart-container{
2017-06-14 10:02:12 +00:00
position: relative;
width: 100%;
height: 90%;
padding-bottom: 40px;
2017-04-19 10:43:57 +00:00
}
</style>