vue3 keep-alive include失效问题

全栈道 2024-06-14 15:33:03 阅读 90

在使用vue3 keep-alive时,发现并没有起作用, 代码如下:

<template> <div class="app-main"> <router-view v-slot="{ Component }"> <keep-alive :include="cachedViews && cachedViews.map((x:any) => x.name)"> <component :is="Component" /> </keep-alive> </router-view> </div></template><script lang="ts" setup>import { useLayoutStore } from '../../../stores';import { storeToRefs } from 'pinia';const store = useLayoutStore();const { cachedViews } = storeToRefs(store);</script><style lang="scss" scoped>.app-main { padding: 10px; height: calc(100vh - 90px); width: 100%;}</style>

这里的include绑定的是路由名称的数组,看着没什么问题,就是不起作用。

原来vue3的setup无法组件命名,keep-alive include必须要组件命名

所以在需要添加缓存的组件中,添加:

<script lang="ts">export default { name: 'charts1' };</script>

这里的charts1就是该组件名,对应路由的name也是charts1。

参考地址:https://blog.csdn.net/guang_sszbs/article/details/123236594

 



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。