mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-13 08:03:22 +01:00
14 lines
238 B
JavaScript
14 lines
238 B
JavaScript
import Conversation from '../conversation/conversation.vue'
|
|
|
|
const conversationPage = {
|
|
components: {
|
|
Conversation
|
|
},
|
|
computed: {
|
|
statusId () {
|
|
return this.$route.params.id
|
|
}
|
|
}
|
|
}
|
|
|
|
export default conversationPage
|