longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
  <flex-layout>
    <div class="test-chart-wrapper">
      <dot-line></dot-line>
    </div>
    <div class="test-chart-wrapper">
      <dot-line></dot-line>
    </div>
  </flex-layout>
</template>
 
<script>
import DotLine from "@/components/myCharts/DotLine";
export default {
  name: "chartTest",
  components: {DotLine},
  data() {
    return {}
  },
}
</script>
 
<style scoped>
.test-chart-wrapper {
  width: 600px;
  height: 400px;
}
</style>