26 lines
500 B
Vue
26 lines
500 B
Vue
|
<template>
|
||
|
<div class="">
|
||
|
<transition name="fade" mode="out-in">
|
||
|
<component :is="activeName"/>
|
||
|
</transition>
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import IndexList from './components/indexList'
|
||
|
import IndexAdd from './components/indexAdd'
|
||
|
import IndexView from './components/index_view'
|
||
|
export default {
|
||
|
components: { IndexList, IndexAdd, IndexView },
|
||
|
data() {
|
||
|
return { // src/views/corpInfo/examine/index.vue
|
||
|
activeName: 'IndexList'
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script>
|