Newer
Older
smartwell_front_dz / src / views / zhangqiu / components / lineDepartment / lineDepartment.vue
wangxitong on 11 Sep 2023 422 bytes first commit
<template>
  <show-item>
    {{ '管线权属单位' }}
    <template #container>
      <div>
        <Chart></Chart>
      </div>
    </template>
  </show-item>
</template>

<script>

import showItem from '@/views/zhangqiu/components/showItem.vue'
import Chart from '@/views/zhangqiu/components/chart.vue'
export default {
  name: "LineDepartment",
  components: {showItem, Chart },
}
</script>

<style scoped>

</style>