RuralDatabase/apps/web/components/section/five.vue

15 lines
440 B
Vue
Raw Normal View History

2024-06-30 21:39:37 +08:00
<script setup lang="ts">
2024-07-05 02:07:18 +08:00
const info = useInfoStore()
const data = computed(() => {
return info.data[info.showIndex]
})
2024-06-30 21:39:37 +08:00
</script>
<template>
<FrameV1 title="重点区域监控">
2024-07-05 02:07:18 +08:00
<div class="flex justify-around gap-4 pt-5">
<FrameImg v-for="item in data.info.monitor" :key="item.name" src="/social-card.png" :title="item.name" icon="solar:adhesive-plaster-line-duotone" class="h-[120px]" />
2024-06-30 21:39:37 +08:00
</div>
</FrameV1>
</template>