Newer
Older
<div class="text-uppercase text-grey text-subtitle2 text-left">Collections</div>
<q-infinite-scroll @load="onLoad">
<div class="row q-gutter-none">
<div
class="col-12 col-sm-6 col-md-3"
v-for="item,idx in items"
:key="idx"
>
<CollectionThumb />
</div>
</div>
<template v-slot:loading>
<div class="row justify-center q-my-md">
</div>
</template>
</q-infinite-scroll>
</section>
</template>
<script>
import CollectionThumb from "../components/CollectionThumb";
export default {
// name: 'ComponentName',
components: {
CollectionThumb
},
methods: {
onLoad (index, done) {
// setTimeout(() => {
// if (this.items) {
// this.items.push({}, {}, {}, {}, {}, {}, {}, {});
// done();
// }
// }, 2000);
computed: {
...mapGetters({ "items": "collections/collections" })
// data() {
// return {
// items: [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]
// };
// }