21 lines
340 B
Vue
21 lines
340 B
Vue
<template>
|
|
<div class="app-container">
|
|
<transition name="fade" mode="out-in">
|
|
<component :is="activeName"/>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import List from './components/list'
|
|
export default {
|
|
components: { List },
|
|
data() {
|
|
return {
|
|
activeName: 'List',
|
|
PROMISE_ID: ''
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|