{
path: '/',
component: HomeLayout,
redirect: '/home',
children: [
{
path: '/home',
name: 'home',
component: () => {
return import('@/views/home')
},
meta: { title: 'cottonWeb' },
},
],
},
<template>
<div id="app">
<transition enter-active-class="animate__animated animate__fadeInUp">
<router-view />
</transition>
</div>
</template>
<template>
<div>
<cotton-navbar></cotton-navbar>
<app-main></app-main> ###这里放置一个子路由
<cotton-footer></cotton-footer>
</div>
</template>
<template>
<div>
<transition enter-active-class="animate__animated animate__fadeInDown">
<router-view :key="key" />
</transition>
</div>
</template>