From a5928c7e430cf7387ee78a161076d3d88501fcb4 Mon Sep 17 00:00:00 2001 From: buttle Date: Wed, 10 Nov 2021 13:53:09 +0100 Subject: [PATCH] adds 'load more' button --- src/components/archiveList.vue | 39 +++++++++++++++++++++++++--------- src/store.js | 19 ++++++++++++----- 2 files changed, 43 insertions(+), 15 deletions(-) diff --git a/src/components/archiveList.vue b/src/components/archiveList.vue index f244f4e..34c3498 100644 --- a/src/components/archiveList.vue +++ b/src/components/archiveList.vue @@ -32,7 +32,7 @@ This file is part of ArciveList. v-on:click="setActiveColumn('title')"> Title + v-bind:class="{activeColumn: isActiveCol('title')}"> @@ -40,7 +40,7 @@ This file is part of ArciveList. v-on:click="setActiveColumn('artist')"> Artist + v-bind:class="{activeColumn: isActiveCol('artist')}"> @@ -48,7 +48,7 @@ This file is part of ArciveList. v-on:click="setActiveColumn('collection')"> Collection + v-bind:class="{activeColumn: isActiveCol('collection')}"> @@ -56,7 +56,7 @@ This file is part of ArciveList. v-on:click="setActiveColumn('date')"> Date + v-bind:class="{activeColumn: isActiveCol('date')}"> @@ -70,7 +70,7 @@ This file is part of ArciveList.

-
    • @@ -104,6 +104,13 @@ This file is part of ArciveList.
    +
    + +