No Description

scorpio 046ad48941 fix keepAlive 2 years ago
.vscode 7c1504e3cf scss + pinia + axios 2 years ago
public 7c1504e3cf scss + pinia + axios 2 years ago
src 046ad48941 fix keepAlive 2 years ago
.eslintrc.cjs d0ac119e71 add eslint 2 years ago
.gitignore 7c1504e3cf scss + pinia + axios 2 years ago
README.md 046ad48941 fix keepAlive 2 years ago
index.html 7cffa5dad0 自动路由 2 years ago
package.json 8d353b738c fix bug 2 years ago
vite.config.js 18722056a3 自动路由 2 years ago
yarn.lock 8d353b738c fix bug 2 years ago

README.md

设置keepAlive

// 配置代码
<route>
  {
    name: '设置',
    meta: { keepAlive: true }
  }
</route>
//
<script>

export default {
  name: '设置', // 需要设置页面name 和 rotue 中的name 一致
  data () {
    return {
      data: { }
    }
  },
  // ...

// 实现逻辑代码
// /router/index.js
if (to.meta.keepAlive) {
  const keepAlive = keepAliveStore()
  keepAlive.add(to.name) // 将路由名称添加到 keepAlive 集合中
}
// /layout/index.vue
<router-view v-slot="{ Component, route }">
  <keep-alive :include='keepAlive.list'>
    <component :is="Component" :key="route.fullPath" />
  </keep-alive>
</router-view>