mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 22:43:34 -07:00
lazy-load shopping list
This commit is contained in:
parent
6478df8438
commit
391372346f
1 changed files with 15 additions and 11 deletions
|
@ -92,10 +92,12 @@
|
||||||
|
|
||||||
<p v-if="!edit" class="mb-0">{{ item.quantity }}</p>
|
<p v-if="!edit" class="mb-0">{{ item.quantity }}</p>
|
||||||
|
|
||||||
<v-icon v-if="!edit" small class="mx-3">
|
<v-icon v-if="!edit" x-small class="mx-3">
|
||||||
mdi-window-close
|
mdi-window-close
|
||||||
</v-icon>
|
</v-icon>
|
||||||
|
|
||||||
|
<v-lazy>
|
||||||
|
<div>
|
||||||
<vue-markdown v-if="!edit" class="dense-markdown" :source="item.text"> </vue-markdown>
|
<vue-markdown v-if="!edit" class="dense-markdown" :source="item.text"> </vue-markdown>
|
||||||
<v-textarea
|
<v-textarea
|
||||||
single-line
|
single-line
|
||||||
|
@ -106,6 +108,8 @@
|
||||||
v-else
|
v-else
|
||||||
v-model="activeList.items[index].text"
|
v-model="activeList.items[index].text"
|
||||||
></v-textarea>
|
></v-textarea>
|
||||||
|
</div>
|
||||||
|
</v-lazy>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-divider class="ma-1"></v-divider>
|
<v-divider class="ma-1"></v-divider>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue