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.
|
|
|
|
<template>
|
|
|
|
|
<keep-alive include="IssueCloseList">
|
|
|
|
|
<component :is="selectComponent"></component>
|
|
|
|
|
</keep-alive>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import IssueClose from './issue-close-list'
|
|
|
|
|
import IssueCloseDetailView from './issue-close-detail-view'
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
selectComponent: IssueClose
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
IssueClose,
|
|
|
|
|
IssueCloseDetailView
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|