정보

Nuxt3 composables

모든 비즈니스 로직을 composables로 정리해 놓는 것이 좋다.

  • composables/useUtils.ts
export const useUtils = () => {
    const sayHello = () => console.log('Hello');
    return {
        sayHello,
    };
};
  • pages/index.vue
<script setup>
    const { sayHello } = useUtils();
    sayHello();
</script>
mpotioncom

Recent Posts

기초 영어 문장 #3 PDF 파일 첨부

기초 영어 문장으로 다시 시작하는 영어이기에 간단하고 반복적인 것부터 접근해야 합니다. 모르는 단어가 적을수록 자신감이…

2주 ago

기초 영어 문장 #2 PDF 파일 첨부

기초 영어 문장으로 다시 시작하는 영어이기에 간단하고 반복적인 것부터 접근해야 합니다. 모르는 단어가 적을수록 자신감이…

2주 ago

기초 영어 문장 #1 PDF 파일 첨부

기초 영어 문장으로 다시 시작하는 영어이기에 간단하고 반복적인 것부터 접근해야 합니다. 모르는 단어가 적을수록 자신감이…

2주 ago

[Excel Practice 1] Input :: How to enter numbers, letters, dates, times, and double lines

[Excel Practice 1] Input :: How to enter numbers, letters, dates, times, and double lines…

9개월 ago

[Excel] Those who need Excel basics, Need practical applications for Excel

How I got started & who I am hello. I want to learn Excel, but…

9개월 ago

[Google Oauth2] Error GSI_LOGGER : The given client ID is not found, The given origin is not allowed for the given client ID.

Google Oauth2를 작업하고 있을 때 다음과 같은 오류가 발생한다면, 간단하게 체크해볼 사항이 있다. The given…

11개월 ago