17 lines
189 B
Vue
17 lines
189 B
Vue
|
<template>
|
||
|
<div class="border-container">
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang='ts'>
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.border-container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
</style>
|