27 lines
345 B
Vue
27 lines
345 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<component :is="activeName"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import List from './components/list'
|
||
|
import Info from './components/info'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
List: List,
|
||
|
Info: Info
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
activeName: 'List',
|
||
|
HIDDEN_ID: ''
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|