mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-25 16:19:43 +02:00
Feature/search page (#259)
* add pillow dependencies * advanced search page * advanced search apge * remove extra dependencies * add pre-run script Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
parent
ec7fa6332d
commit
6d5f3e7496
12 changed files with 383 additions and 91 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div v-if="items && items.length > 0">
|
||||
<div v-if="items.length > 0">
|
||||
<h2 v-if="title" class="mt-4">{{ title }}</h2>
|
||||
<v-chip
|
||||
label
|
||||
|
@ -19,7 +19,9 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
items: Array,
|
||||
items: {
|
||||
default: [],
|
||||
},
|
||||
title: {
|
||||
default: null,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue