Add lists listing page
This commit is contained in:
parent
e18e179a59
commit
6e8c7460a2
6 changed files with 61 additions and 0 deletions
17
src/components/lists/lists.js
Normal file
17
src/components/lists/lists.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue