diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-10-30 16:12:35 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-10-30 16:12:35 +0100 |
| commit | 8630f91a13e8b8f7b56d2cb3dd2b700ad5ebd6f6 (patch) | |
| tree | 5178ee0f0fedafc10f1994465d72700c0dfd500c /src/components/status/status.js | |
| parent | b96b5eb32731d60f3f56971aae89db818e2742d2 (diff) | |
Add favorite-button.
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 6ee8f0dd..f3816daa 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -1,4 +1,5 @@ import Attachment from '../attachment/attachment.vue' +import FavoriteButton from '../favorite_button/favorite_button.vue' const Status = { props: [ 'statusoid' ], @@ -14,9 +15,9 @@ const Status = { } }, components: { - Attachment + Attachment, + FavoriteButton } } export default Status - |
