Skip to content

Commit

Permalink
feat: add type
Browse files Browse the repository at this point in the history
Signed-off-by: NaYeong,Kim <nayeongkim@megazone.com>
  • Loading branch information
skdud4659 committed Dec 2, 2024
1 parent d01e13e commit eec2514
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ const serviceFormState = serviceFormStore.state;
const router = useRouter();
const storeState = reactive({
currentStep: computed(() => serviceFormState.currentStep),
currentStep: computed<number>(() => serviceFormState.currentStep),
});
const state = reactive({
previousStep: computed(() => serviceFormState.currentStep - 1),
nextStep: computed(() => serviceFormState.currentStep + 1),
previousStep: computed<number>(() => serviceFormState.currentStep - 1),
nextStep: computed<number>(() => serviceFormState.currentStep + 1),
});
const handleClickPrevButton = () => {
Expand Down

0 comments on commit eec2514

Please sign in to comment.