riku
2024-10-22 43981545c5aefdb4248d89e3121a200d53332c7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <el-row :gutter="0">
    <el-col :span="12"
      ><CompTransfer title="飞羽监管" title-justify="left"></CompTransfer
    ></el-col>
    <el-col :span="12"
      ><CompTransfer title="飞羽环境" title-justify="right"></CompTransfer
    ></el-col>
  </el-row>
</template>
 
<script>
import CompTransfer from './CompTransfer.vue';
export default {
  components: {
    CompTransfer,
  },
};
</script>