21 lines
339 B
Vue
21 lines
339 B
Vue
|
|
<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>
|