27 lines
469 B
Vue
27 lines
469 B
Vue
<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>
|