Add minimal draft management tool
This commit is contained in:
parent
1edada7e9d
commit
02e2e6b1bf
10 changed files with 186 additions and 45 deletions
17
src/components/drafts/drafts.js
Normal file
17
src/components/drafts/drafts.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import Draft from 'src/components/draft/draft.vue'
|
||||
import List from 'src/components/list/list.vue'
|
||||
|
||||
const Drafts = {
|
||||
components: {
|
||||
Draft,
|
||||
List
|
||||
},
|
||||
computed: {
|
||||
drafts () {
|
||||
console.debug('available drafts:', this.$store.getters.draftsArray)
|
||||
return this.$store.getters.draftsArray
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default Drafts
|
||||
Loading…
Add table
Add a link
Reference in a new issue