mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 23:15:34 -04:00
chore: Nuxt 4 upgrade (#7426)
This commit is contained in:
24
frontend/app/components/global/BaseDivider.vue
Normal file
24
frontend/app/components/global/BaseDivider.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<v-divider
|
||||
:width="width"
|
||||
:class="color"
|
||||
:style="`border-width: ${thickness} !important`"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
defineProps({
|
||||
width: {
|
||||
type: String,
|
||||
default: "100px",
|
||||
},
|
||||
thickness: {
|
||||
type: String,
|
||||
default: "2px",
|
||||
},
|
||||
color: {
|
||||
type: String,
|
||||
default: "accent",
|
||||
},
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user