28 lines
435 B
Vue
28 lines
435 B
Vue
<template>
|
|
<div>
|
|
<CorpList v-show="activeName==='CorpList'" ref="CorpList" />
|
|
<List v-if="activeName==='List'" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import List from './components/list'
|
|
import CorpList from "./components/corpList";
|
|
export default {
|
|
components: {
|
|
CorpList: CorpList,
|
|
List: List
|
|
},
|
|
data() {
|
|
return {
|
|
activeName: 'CorpList',
|
|
USER_ID: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|