2020-07-03 19:45:49 +00:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
|
|
|
|
|
|
|
const Bookmarks = {
|
|
|
|
computed: {
|
|
|
|
timeline () {
|
|
|
|
return this.$store.state.statuses.timelines.bookmarks
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
Timeline
|
|
|
|
},
|
2021-04-25 10:44:50 +00:00
|
|
|
unmounted () {
|
2020-07-03 19:45:49 +00:00
|
|
|
this.$store.commit('clearTimeline', { timeline: 'bookmarks' })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Bookmarks
|