Newer
Older
smartwell_front / src / views / zhangqiu / components / deviceAlarm / deviceAlarm.vue
liuyangyingjie on 16 Aug 2022 556 bytes feat(view): 新增章丘驾驶舱看板
<template>
  <show-item>
    {{ '设备警告' }}
    <template #container>
      <div class="table">
        <table-data></table-data>
      </div>
    </template>
  </show-item>
</template>

<script>

import tableData from '@/views/zhangqiu/components/tableData.vue'
import TableData from '@/views/zhangqiu/components/tableData.vue'
import showItem from '@/views/zhangqiu/components/showItem.vue'
export default {
  name: "DeviceAlarm",
  components: { tableData, TableData, showItem }
  }
</script>

<style scoped>
.table{
  margin-top: 10px
}
</style>