Blame view

src/views/dashboard/Analysis.vue 352 Bytes
DESKTOP-AO0VKC8\mahua authored
1
2
3
4
5
6
7
8
<template>
  <div>
    <index-chart v-if="indexStyle==1"></index-chart>
  </div>
</template>

<script>
  import IndexChart from './IndexChart'
9
DESKTOP-AO0VKC8\mahua authored
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

  export default {
    name: "Analysis",
    components: {
      IndexChart,
    },
    data() {
      return {
        indexStyle:1
      }
    },
    created() {

    },
    methods: {

    }
  }
</script>