mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
Setup the file structure for components, pages, layouts, api, and all new frontend structure
23 lines
379 B
Vue
23 lines
379 B
Vue
<template>
|
|
<v-divider :width="width" class="mx-auto" :class="color" :style="`border-width: ${thickness} !important`" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
width: {
|
|
type: String,
|
|
default: "100px"
|
|
},
|
|
thickness: {
|
|
type: String,
|
|
default: "2px"
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: "accent"
|
|
}
|
|
}
|
|
}
|
|
</script>
|