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

24 lines
361 B
Vue
Raw Normal View History

2017-04-19 10:43:57 +00:00
<template>
<div class="chart-container">
<chart height="100%" width="100%"/>
2017-04-19 10:43:57 +00:00
</div>
</template>
2017-06-14 10:02:12 +00:00
2017-04-19 10:43:57 +00:00
<script>
import Chart from '@/components/element-ui/Charts/mixChart'
2017-07-06 09:56:17 +00:00
2017-08-22 07:43:34 +00:00
export default {
name: 'MixChart',
components: { Chart }
2017-08-22 07:43:34 +00:00
}
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%;
2018-09-04 07:03:47 +00:00
height: calc(100vh - 84px);
2017-04-19 10:43:57 +00:00
}
</style>