logo

pleroma-fe

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

bookmark_timeline.js (322B)


  1. import Timeline from '../timeline/timeline.vue'
  2. const Bookmarks = {
  3. computed: {
  4. timeline () {
  5. return this.$store.state.statuses.timelines.bookmarks
  6. }
  7. },
  8. components: {
  9. Timeline
  10. },
  11. unmounted () {
  12. this.$store.commit('clearTimeline', { timeline: 'bookmarks' })
  13. }
  14. }
  15. export default Bookmarks