【踩坑记录】vue2转vue3 keep-alive 不生效 年少不知有林皇错把梅罗当球王 2024-01-10 49 阅读1分钟 原因:转vue3后代码script使用的是setup,未设置name。 <script setup> defineOptions({ name: 'xxxx', }) </script> 类比vue2中的 <script> export default { name: "xxxx", } </script>