You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
573 B
32 lines
573 B
5 years ago
|
<template>
|
||
|
<keep-alive include="MessageBoradReply">
|
||
|
<component :is="selectComponent"></component>
|
||
|
</keep-alive>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import MessageBoradReply from './messageboradreply'
|
||
|
import MessageBoradReplyDetail from './messageboradreplyDetail'
|
||
|
|
||
|
export default {
|
||
|
name: 'boradReplyRoute',
|
||
|
data () {
|
||
|
return {
|
||
|
selectComponent: MessageBoradReply
|
||
|
}
|
||
|
},
|
||
|
components: {
|
||
|
MessageBoradReply,
|
||
|
MessageBoradReplyDetail
|
||
|
},
|
||
|
methods: {
|
||
|
init () {
|
||
|
this.selectComponent = MessageBoradReply
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|