summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2023-08-14 19:18:42 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2023-08-22 08:34:39 +0200
commit6693681bba5edcb9d9cea79995c7c695dda6f20f (patch)
tree67399d0a3ec14b659bd95534b753889b4730cba8 /src/App.vue
parent0dd27dd9150aeb146c1ece18f3eeee2fb535716e (diff)
basic starred items list with VirtualScroll component
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
index 0f5c1a0dc..98c3e393c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -24,6 +24,7 @@ export default Vue.extend({
async created() {
await this.$store.dispatch(ACTIONS.FETCH_FOLDERS)
await this.$store.dispatch(ACTIONS.FETCH_FEEDS)
+ await this.$store.dispatch(ACTIONS.FETCH_STARRED)
},
})
</script>