21 lines
339 B
Vue
Raw Normal View History

2023-09-27 09:25:07 +08:00
<template>
<Card title="昨日用电量">
<div class="edge-top-left">123</div>
</Card>
</template>
<script setup lang="ts">
import Card from "@/components/card.vue";
</script>
<style scoped lang="scss">
.edge-top-left {
width: 100%;
height: 100%;
margin-left: 3%;
position: relative;
display: flex;
flex-wrap: wrap;
}
</style>