GuLiMmo
2024-03-19 aec00ecc093be803860c8675cbe1c4c776a7cb4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
    <div class="event-container">
        <div class="edit-box"></div>
        <div class="map-box"></div>
    </div>
</template>
 
<script lang="ts" scoped>
</script>
 
<style lang="scss" scoped>
.event-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgb(35, 35, 35);
    .edit-box,
    .map-box {
        flex: 1;
        border: 1px solid red;
    }
}
</style>