lg_frontend/components/peak-coal-monitoring/DeviceOverview.vue

27 lines
469 B
Vue
Raw Normal View History

2024-03-05 12:02:32 +00:00
<template>
<div class="device-overview">
<peak-secondary-title :title="title" />
</div>
</template>
<script>
import PeakSecondaryTitle from "@/components/peak-coal-monitoring/PeakSecondaryTitle";
export default {
name: "DeviceOverview",
components: {PeakSecondaryTitle},
data(){
return{
title: '设备概况'
}
}
}
</script>
<style scoped lang="less">
@import "assets/styles/mixin";
.device-overview{
height: 100%;
width: 100%;
}
</style>