yudao-init/src/views/copilot/energy/components/ElecCost.vue

31 lines
415 B
Vue
Raw Normal View History

2024-04-29 17:00:53 +08:00
<!--
filename: ElecCost.vue
author: liubin
date: 2024-04-29 16:37:01
description: 电能耗
-->
<template>
<div class="elec-cost">elec cost</div>
</template>
<script>
export default {
name: "ElecCost",
components: {},
props: {},
data() {
return {};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.elec-cost {
background: #cc03;
flex: 1;
}
</style>