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>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
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",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2021-07-31 22:45:28 +00:00
|
|
|
</script>
|