25 lines
511 B
Vue

<template>
<Card :title="title">
<CountList :allCount="{ value: 22, label: '塔吊总数' }" :todayCount="{ value: 65, label: '今日报警总数' }" :list="[]" />
</Card>
</template>
<script>
import Card from '../components/Card.vue'
import CountList from '../components/CountList.vue'
export default {
components: { Card, CountList },
props: {
title: {
type: String,
default: 'default title'
}
},
data() {
return {}
}
}
</script>
<style lang="less" scoped></style>