refactor(frontend): rename pizzax fields

This commit is contained in:
syuilo
2025-03-10 11:09:59 +09:00
parent a7f7ff33e7
commit d19c094a9b
48 changed files with 216 additions and 216 deletions

View File

@@ -48,7 +48,7 @@ const { widgetProps, configure } = useWidgetPropsManager(name,
emit,
);
const text = ref<string | null>(store.state.memo);
const text = ref<string | null>(store.s.memo);
const changed = ref(false);
let timeoutId;
@@ -63,7 +63,7 @@ const onChange = () => {
timeoutId = window.setTimeout(saveMemo, 1000);
};
watch(() => store.reactiveState.memo, newText => {
watch(() => store.r.memo, newText => {
text.value = newText.value;
});