12 lines
279 B
Vue
12 lines
279 B
Vue
<template>
|
|
<div class="app-main">
|
|
<router-view v-slot="{ Component, route }">
|
|
<transition name="fade-transform" mode="out-in">
|
|
<component :is="Component" :key="route" />
|
|
</transition>
|
|
</router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
</style> |