Page MenuHomePhorge

tag_timeline.js
No OneTemporary

Size
698 B
Referenced Files
None
Subscribers
None

tag_timeline.js

import Timeline from '../timeline/timeline.vue'
const TagTimeline = {
created () {
this.$store.commit('clearTimeline', { timeline: 'tag' })
this.$store.dispatch('startFetchingTimeline', { timeline: 'tag', tag: this.tag })
},
components: {
Timeline
},
computed: {
tag () { return this.$route.params.tag },
timeline () { return this.$store.state.statuses.timelines.tag }
},
watch: {
tag () {
this.$store.commit('clearTimeline', { timeline: 'tag' })
this.$store.dispatch('startFetchingTimeline', { timeline: 'tag', tag: this.tag })
}
},
destroyed () {
this.$store.dispatch('stopFetchingTimeline', 'tag')
}
}
export default TagTimeline

File Metadata

Mime Type
text/plain
Expires
Sat, Nov 15, 1:59 AM (23 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
633050
Default Alt Text
tag_timeline.js (698 B)

Event Timeline