2021-07-31 14:45:28 -08:00
|
|
|
<template>
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-divider
|
|
|
|
:width="width"
|
|
|
|
:class="color"
|
|
|
|
:style="`border-width: ${thickness} !important`"
|
|
|
|
/>
|
2021-07-31 14:45:28 -08:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 07:15:23 +01:00
|
|
|
<script lang="ts">
|
2025-06-20 00:09:12 +07:00
|
|
|
export default defineNuxtComponent({
|
2021-07-31 14:45:28 -08:00
|
|
|
props: {
|
|
|
|
width: {
|
|
|
|
type: String,
|
2021-08-06 16:28:12 -08:00
|
|
|
default: "100px",
|
2021-07-31 14:45:28 -08:00
|
|
|
},
|
|
|
|
thickness: {
|
|
|
|
type: String,
|
2021-08-06 16:28:12 -08:00
|
|
|
default: "2px",
|
2021-07-31 14:45:28 -08:00
|
|
|
},
|
|
|
|
color: {
|
|
|
|
type: String,
|
2021-08-06 16:28:12 -08:00
|
|
|
default: "accent",
|
|
|
|
},
|
|
|
|
},
|
2022-01-09 07:15:23 +01:00
|
|
|
});
|
2021-07-31 14:45:28 -08:00
|
|
|
</script>
|