diff options
Diffstat (limited to 'src/components/dm_timeline/dm_timeline.js')
| -rw-r--r-- | src/components/dm_timeline/dm_timeline.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/dm_timeline/dm_timeline.js b/src/components/dm_timeline/dm_timeline.js new file mode 100644 index 00000000..8b5393a9 --- /dev/null +++ b/src/components/dm_timeline/dm_timeline.js @@ -0,0 +1,14 @@ +import Timeline from '../timeline/timeline.vue' + +const DMs = { + computed: { + timeline () { + return this.$store.state.statuses.timelines.dms + } + }, + components: { + Timeline + } +} + +export default DMs |
