30 lines
457 B
Vue
30 lines
457 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<component :is="activeName"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import List from './components/list'
|
||
|
import Info from './components/info'
|
||
|
import recordList from './components/record-list'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
List: List,
|
||
|
Info: Info,
|
||
|
recordList: recordList
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
activeName: 'List',
|
||
|
OUTSOURCED_ID: '',
|
||
|
KEYPROJECTCHECK_ID: ''
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|