mixChart.vue 359 字节
Newer Older
P
add  
Pan 已提交
1
<template>
花裤衩 已提交
2 3
  <div class='chart-container'>
    <chart height='100%' width='100%'></chart>
P
add  
Pan 已提交
4 5
  </div>
</template>
P
Pan 已提交
6

P
add  
Pan 已提交
7
<script>
8
import Chart from '@/components/Charts/mixChart'
P
Pan 已提交
9

P
Pan 已提交
10
export default {
11 12
  name: 'mixChart',
  components: { Chart }
P
Pan 已提交
13
}
P
add  
Pan 已提交
14 15 16 17
</script>

<style scoped>
.chart-container{
P
Pan 已提交
18
  position: relative;
花裤衩 已提交
19
  padding: 20px;
P
Pan 已提交
20
  width: 100%;
花裤衩 已提交
21
  height:85vh;
P
add  
Pan 已提交
22 23 24
}
</style>