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