import { defineStore } from "pinia"; export const useCharacterInteractionStore = defineStore("characterInteraction", { state: () => ({}), actions: {}, persist: true // 开启持久化 });