1
0
Fork 0
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:
Hayden 2021-04-03 17:18:01 -08:00 committed by GitHub
parent ec7fa6332d
commit 6d5f3e7496
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 383 additions and 91 deletions

View file

@ -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,
},