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