24 lines
346 B
Vue
24 lines
346 B
Vue
|
<template>
|
||
|
<component :is="activeName" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import List from './components/list'
|
||
|
import Record from './components/record'
|
||
|
export default {
|
||
|
components: {
|
||
|
List: List,
|
||
|
Record: Record
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
activeName: 'List',
|
||
|
SUPERVISE_CORPINFO_ID: ''
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|