mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-22 06:39:41 +02:00
feat: Data Management from Shopping List (#3603)
Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com>
This commit is contained in:
parent
89982f3e5f
commit
ca26639525
6 changed files with 140 additions and 35 deletions
|
@ -14,15 +14,15 @@
|
|||
>
|
||||
<v-icon v-if="!iconRight" left>
|
||||
<slot name="icon">
|
||||
{{ btnAttrs.icon }}
|
||||
{{ icon || btnAttrs.icon }}
|
||||
</slot>
|
||||
</v-icon>
|
||||
<slot name="default">
|
||||
{{ btnAttrs.text }}
|
||||
{{ text || btnAttrs.text }}
|
||||
</slot>
|
||||
<v-icon v-if="iconRight" right>
|
||||
<slot name="icon">
|
||||
{{ btnAttrs.icon }}
|
||||
{{ icon || btnAttrs.icon }}
|
||||
</slot>
|
||||
</v-icon>
|
||||
</v-btn>
|
||||
|
@ -103,6 +103,14 @@ export default defineComponent({
|
|||
type: String,
|
||||
default: null,
|
||||
},
|
||||
text: {
|
||||
type: String,
|
||||
default: null,
|
||||
},
|
||||
icon: {
|
||||
type: String,
|
||||
default: null,
|
||||
},
|
||||
iconRight: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue