de291e2e33
Co-authored-by: jared <jaredrmain@gmail.com>
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
import Timeline from '../timeline/timeline.vue'
|
|
|
|
const Bookmarks = {
|
|
computed: {
|
|
timeline () {
|
|
return this.$store.state.statuses.timelines.bookmarks
|
|
}
|
|
},
|
|
components: {
|
|
Timeline
|
|
},
|
|
destroyed () {
|
|
this.$store.commit('clearTimeline', { timeline: 'bookmarks' })
|
|
}
|
|
}
|
|
|
|
export default Bookmarks
|