Newer
Older
safe_production_front / src / views / bigScreen / components / alarmInfo.vue
<!-- 报警信息 -->
<script lang="ts" setup name="AlarmInfo">
import type { Ref } from 'vue'

onMounted(() => {
})
</script>

<template>
  <el-carousel style="width: 100%;height: 100%;">
    <el-carousel-item v-for="item in 4" :key="item">
      <div class="top">
      </div>
    </el-carousel-item>
  </el-carousel>
</template>

<style lang="scss" scoped>
.top {
  color: #abdfe0;
}
</style>