mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-15 01:23:57 -07:00
feat: Filter Recipes By Household (and a ton of bug fixes) (#4207)
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
parent
2a6922a85c
commit
7c274de778
65 changed files with 896 additions and 590 deletions
|
@ -44,6 +44,8 @@
|
|||
item-key="id"
|
||||
:show-select="bulkActions.length > 0"
|
||||
:headers="activeHeaders"
|
||||
:sort-by="initialSort"
|
||||
:sort-desc="initialSortDesc"
|
||||
:items="data || []"
|
||||
:items-per-page="15"
|
||||
:search="search"
|
||||
|
@ -126,6 +128,14 @@ export default defineComponent({
|
|||
type: Array as () => BulkAction[],
|
||||
default: () => [],
|
||||
},
|
||||
initialSort: {
|
||||
type: String,
|
||||
default: "id",
|
||||
},
|
||||
initialSortDesc: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
setup(props, context) {
|
||||
// ===========================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue