25 lines
361 B
Vue
25 lines
361 B
Vue
|
<template>
|
||
|
<component :is="activeName" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import List from './components/list.vue'
|
||
|
import recordsList from './components/recordsList.vue'
|
||
|
export default {
|
||
|
components: {
|
||
|
List: List,
|
||
|
recordsList: recordsList
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
activeName: 'List',
|
||
|
USER_ID: ''
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|