mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
Add advanced search link
This commit is contained in:
parent
40f875b906
commit
b8e457f4fd
1 changed files with 10 additions and 3 deletions
|
@ -17,11 +17,18 @@
|
||||||
</v-text-field>
|
</v-text-field>
|
||||||
</template>
|
</template>
|
||||||
<v-card v-if="showResults" max-height="500" :max-width="maxWidth">
|
<v-card v-if="showResults" max-height="500" :max-width="maxWidth">
|
||||||
<v-card-text class="py-1">Results</v-card-text>
|
<v-card-text class="flex row mx-auto">
|
||||||
|
<div class="mr-auto">
|
||||||
|
Results
|
||||||
|
</div>
|
||||||
|
<router-link to="/search">
|
||||||
|
Advanced Search
|
||||||
|
</router-link>
|
||||||
|
</v-card-text>
|
||||||
<v-divider></v-divider>
|
<v-divider></v-divider>
|
||||||
<v-list scrollable>
|
<v-list scrollable v-if="autoResults">
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="(item, index) in autoResults"
|
v-for="(item, index) in autoResults.slice(0, 15)"
|
||||||
:key="index"
|
:key="index"
|
||||||
:to="navOnClick ? `/recipe/${item.item.slug}` : null"
|
:to="navOnClick ? `/recipe/${item.item.slug}` : null"
|
||||||
@click="navOnClick ? null : selected(item.item.slug, item.item.name)"
|
@click="navOnClick ? null : selected(item.item.slug, item.item.name)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue