pleroma-fe/src/components/lists/lists.js
2022-06-19 00:04:51 +03:00

18 lines
272 B
JavaScript

import ListCard from '../list_card/list_card.vue'
const Lists = {
components: {
ListCard
},
created () {
this.$store.dispatch('startFetchingLists')
},
computed: {
lists () {
return this.$store.state.api.lists
}
}
}
export default Lists