aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation-page/conversation-page.js
blob: 8f996be12c26720bae830d3baf36bbe8f24c9864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Conversation from '../conversation/conversation.vue'

const conversationPage = {
  components: {
    Conversation
  },
  computed: {
    statusId () {
      return this.$route.params.id
    }
  }
}

export default conversationPage