DeviceData.vue
449 Bytes
<template>
<div class="device-data">
<h3>设备数据</h3>
<!-- 在这里添加设备数据的逻辑和样式 -->
</div>
</template>
<script>
export default {
name: "DeviceData",
data() {
return {};
},
methods: {},
};
</script>
<style lang="scss" scoped>
.device-data {
padding: 20px;
background-color: #f5f5f5;
border-radius: 4px;
h3 {
margin-bottom: 20px;
font-size: 18px;
color: #333;
}
}
</style>