mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-12 16:14:02 -07:00
refactor(frontend): 🏗️ scafold pages and componenets folder
Setup the file structure for components, pages, layouts, api, and all new frontend structure
This commit is contained in:
parent
8d3db89327
commit
91f56b42de
47 changed files with 1027 additions and 146 deletions
22
frontend/components/global/BaseDivider.vue
Normal file
22
frontend/components/global/BaseDivider.vue
Normal file
|
@ -0,0 +1,22 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue