32 lines
484 B
Vue
32 lines
484 B
Vue
<!--
|
|
* @Author: zwq
|
|
* @Date: 2021-11-19 10:55:33
|
|
* @LastEditors: gtz
|
|
* @LastEditTime: 2021-11-22 19:36:14
|
|
* @Description:
|
|
-->
|
|
<template>
|
|
<div class="chart-container">
|
|
<chart height="100%" width="100%" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Chart from '@/components/Charts/MixChart'
|
|
|
|
export default {
|
|
name: 'electric',
|
|
components: { Chart }
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.chart-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: calc(100vh - 84px);
|
|
}
|
|
</style>
|
|
|
|
|