akkoma-fe/src/components/lists/lists.js

33 lines
507 B
JavaScript
Raw Normal View History

2022-06-15 16:13:33 +00:00
import ListCard from '../list_card/list_card.vue'
2022-06-15 22:52:24 +00:00
import ListNew from '../list_new/list_new.vue'
2022-06-15 16:13:33 +00:00
const Lists = {
2022-12-08 16:48:17 +00:00
data() {
2022-06-15 22:52:24 +00:00
return {
isNew: false
}
},
2022-06-15 16:13:33 +00:00
components: {
2022-06-15 22:52:24 +00:00
ListCard,
ListNew
2022-06-15 16:13:33 +00:00
},
2022-12-08 16:48:17 +00:00
created() {
2022-06-15 16:13:33 +00:00
this.$store.dispatch('startFetchingLists')
},
computed: {
2022-12-08 16:48:17 +00:00
lists() {
return this.$store.state.lists.allLists
2022-06-15 16:13:33 +00:00
}
2022-06-15 22:52:24 +00:00
},
methods: {
2022-12-08 16:48:17 +00:00
cancelNewList() {
2022-06-15 22:52:24 +00:00
this.isNew = false
},
2022-12-08 16:48:17 +00:00
newList() {
2022-06-15 22:52:24 +00:00
this.isNew = true
}
2022-06-15 16:13:33 +00:00
}
}
export default Lists