web/src/components/Divider.vue

15 lines
214 B
Vue

<script setup lang="ts">
</script>
<template>
<div class="divider"></div>
</template>
<style scoped lang="scss">
.divider{
display: block;
height: 0;
width: 100%;
border-bottom: 1px solid #ddd;
}
</style>