keep-alive-name-list.ts 259 B

123456789101112
  1. import {defineStore} from "pinia";
  2. export const keepAliveNameStore = defineStore('keepAliveNameStore', {
  3. state: () => ({
  4. data: new Set()
  5. }),
  6. actions: {
  7. pushName(name: string) {
  8. this.data.add(name);
  9. },
  10. }
  11. })