index.vue 682 Bytes
<template>
  <Chart :cdata="cdata" />
</template>

<script>
import Chart from './chart.vue'
export default {
  data () {
    return {
      cdata: {
        category: [
          "首次",
          "转移",
          "变更",
          "注销",
          "更正",
          "异议",
          "预告",
          "查封",
          "其他",

        ],
        lineData: [
          14715,
          8444,
          10415,
          6061,
          18092,
          12728,
          9045,
          8348,
          20008,
        ],
      }
    };
  },
  components: {
    Chart,
  },
  mounted () {
  },
  methods: {

  }
};
</script>

<style lang="scss" scoped>

</style>