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.
31 lines
731 B
31 lines
731 B
<template>
|
|
<keep-alive include="checkrecords">
|
|
<component :is="selectComponent"></component>
|
|
</keep-alive>
|
|
</template>
|
|
<script>
|
|
import Checkrecords from './checkrecords'
|
|
import CheckrecordsDetail from './checkrecordsDetail'
|
|
import CheckrecordsHandle from './checkrecords-handle'
|
|
export default {
|
|
data () {
|
|
return {
|
|
selectComponent: Checkrecords
|
|
}
|
|
},
|
|
components: {
|
|
Checkrecords,
|
|
CheckrecordsDetail,
|
|
CheckrecordsHandle
|
|
},
|
|
methods: {
|
|
init () {
|
|
this.selectComponent = Checkrecords
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|
|
|