北尚诉办前端
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.

30 lines
574 B

<template>
<keep-alive include="monthexcellentgrid">
<component :is="selectComponent"></component>
</keep-alive>
</template>
<script>
import Monthexcellentgrid from './monthexcellentgrid'
import MonthexcellentgridDetail from './monthexcellentgridDetail'
export default {
data () {
return {
selectComponent: Monthexcellentgrid
}
},
components: {
Monthexcellentgrid,
MonthexcellentgridDetail
},
methods: {
init () {
this.selectComponent = Monthexcellentgrid
}
}
}
</script>
<style lang="scss" scoped>
</style>