123456789101112131415161718192021 |
- <template>
- <el-col :span="24" class="fireHazard modular">
- <el-col class="title title2">消防隐患</el-col>
- <seTable @xfgjClick="xfgjClick" />
- </el-col>
- </template>
- <script>
- import seTable from "@/components2/fireHazard/seTable.vue";
- export default {
- name:"fireHazard",
- components: {
- seTable,
- },
- methods:{
- xfgjClick(row){
- this.$emit("xfgjClick",row)
- }
- }
- };
- </script>
|