aboutsummaryrefslogtreecommitdiff
path: root/src/components/bookmark_timeline/bookmark_timeline.js
blob: 5ac43d90c127b1fc0add2d9a45a424be235535d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Timeline from '../timeline/timeline.vue'

const Bookmarks = {
  computed: {
    timeline () {
      return this.$store.state.statuses.timelines.bookmarks
    }
  },
  components: {
    Timeline
  },
  unmounted () {
    this.$store.commit('clearTimeline', { timeline: 'bookmarks' })
  }
}

export default Bookmarks