logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/

drafts.js (268B)


  1. import Draft from 'src/components/draft/draft.vue'
  2. import List from 'src/components/list/list.vue'
  3. const Drafts = {
  4. components: {
  5. Draft,
  6. List
  7. },
  8. computed: {
  9. drafts () {
  10. return this.$store.getters.draftsArray
  11. }
  12. }
  13. }
  14. export default Drafts