aboutsummaryrefslogtreecommitdiff
path: root/src/components/dm_timeline/dm_timeline.js
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2018-11-13 20:34:56 +0100
committerRoger Braun <roger@rogerbraun.net>2018-11-13 20:34:56 +0100
commitb37a0f4f23fcb81353a98d45f55cc760b84c5d0f (patch)
tree6aa295b1c4b7310a650e6e048524c078a34b4dec /src/components/dm_timeline/dm_timeline.js
parent7f13cbc493862cfe3f93f7e33e14cf73de92de66 (diff)
Add direct message tab.
Diffstat (limited to 'src/components/dm_timeline/dm_timeline.js')
-rw-r--r--src/components/dm_timeline/dm_timeline.js14
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