diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-10-26 19:03:55 +0200 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-10-26 19:03:55 +0200 |
| commit | 4c2764c747f1480ee7752e43357663f3c321f571 (patch) | |
| tree | e5bab6fc4abfd03c626d6d9d07dbac089ab7a151 /src/components/public_timeline/public_timeline.js | |
| parent | 191c02af1ebfc7e6c53dc88d97c4e3ca23fbea8b (diff) | |
.
Diffstat (limited to 'src/components/public_timeline/public_timeline.js')
| -rw-r--r-- | src/components/public_timeline/public_timeline.js | 11 |
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 |
