1
0
Fork 0
akkoma-fe/src/components/conversation-page/conversation-page.js

15 lines
238 B
JavaScript

import Conversation from '../conversation/conversation.vue'
const conversationPage = {
components: {
Conversation
},
computed: {
statusId () {
return this.$route.params.id
}
}
}
export default conversationPage