2017-02-04 13:52:26 +01:00
|
|
|
import Conversation from '../conversation/conversation.vue'
|
|
|
|
|
|
|
|
|
|
const conversationPage = {
|
|
|
|
|
components: {
|
2026-01-06 16:22:52 +02:00
|
|
|
Conversation,
|
2017-02-04 13:52:26 +01:00
|
|
|
},
|
|
|
|
|
computed: {
|
2026-01-06 16:22:52 +02:00
|
|
|
statusId() {
|
2019-08-30 11:47:15 -04:00
|
|
|
return this.$route.params.id
|
2026-01-06 16:22:52 +02:00
|
|
|
},
|
|
|
|
|
},
|
2017-02-04 13:52:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default conversationPage
|