31 lines
415 B
Vue
31 lines
415 B
Vue
|
<!--
|
||
|
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>
|