aboutsummaryrefslogtreecommitdiff
path: root/src/components/public_timeline/public_timeline.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/public_timeline/public_timeline.js')
-rw-r--r--src/components/public_timeline/public_timeline.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/public_timeline/public_timeline.js b/src/components/public_timeline/public_timeline.js
new file mode 100644
index 00000000..cac422ec
--- /dev/null
+++ b/src/components/public_timeline/public_timeline.js
@@ -0,0 +1,11 @@
+import Timeline from '../timeline/timeline.vue'
+const PublicTimeline = {
+ components: {
+ Timeline
+ },
+ computed: {
+ timeline () { return this.$store.state.statuses.timelines.public }
+ }
+}
+
+export default PublicTimeline