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