</template>
<router-view v-slot="{ Component, route }">
<template v-if="Component">
<Transition name="fade-transform" mode="out-in">
<KeepAlive>
<component :is="Component" :key="route.name"></component>
</KeepAlive>
</Transition>
</template>
</router-view>
注意:
仅支持单个元素或组件作为其插槽内容。如果内容是一个组件,这个组件必须仅有一个根元素。 (注释也算根节点)!!!!
必须这样的!!!
<template>
<div>
//内容
</div>
</template>
下面不可以
<template>
<div>
//内容
</div>
//注释
</template>
文章参考至:https://blog.csdn.net/qq_43322436/article/details/141857935










网友评论