diff --git a/src/components/friends_timeline/friends_timeline.js b/src/components/friends_timeline/friends_timeline.js new file mode 100644 index 000000000..948b23a49 --- /dev/null +++ b/src/components/friends_timeline/friends_timeline.js @@ -0,0 +1,11 @@ +import Timeline from '../timeline/timeline.vue' +const FriendsTimeline = { + components: { + Timeline + }, + computed: { + timeline () { return this.$store.state.statuses.timelines.friends } + } +} + +export default FriendsTimeline diff --git a/src/components/friends_timeline/friends_timeline.vue b/src/components/friends_timeline/friends_timeline.vue new file mode 100644 index 000000000..03e518c63 --- /dev/null +++ b/src/components/friends_timeline/friends_timeline.vue @@ -0,0 +1,10 @@ + + + diff --git a/src/components/public_timeline/public_timeline.vue b/src/components/public_timeline/public_timeline.vue index 0ed8baf8f..4aab0943e 100644 --- a/src/components/public_timeline/public_timeline.vue +++ b/src/components/public_timeline/public_timeline.vue @@ -1,5 +1,5 @@