lazy-load shopping list

This commit is contained in:
hay-kot 2021-05-24 20:12:14 -07:00
commit 391372346f

View file

@ -92,10 +92,12 @@
<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
</v-icon>
<v-lazy>
<div>
<vue-markdown v-if="!edit" class="dense-markdown" :source="item.text"> </vue-markdown>
<v-textarea
single-line
@ -106,6 +108,8 @@
v-else
v-model="activeList.items[index].text"
></v-textarea>
</div>
</v-lazy>
</v-col>
<v-divider class="ma-1"></v-divider>
</v-row>