모든 비즈니스 로직을 composables로 정리해 놓는 것이 좋다.
export const useUtils = () => {
const sayHello = () => console.log('Hello');
return {
sayHello,
};
};
<script setup>
const { sayHello } = useUtils();
sayHello();
</script>
[Excel Practice 1] Input :: How to enter numbers, letters, dates, times, and double lines…
How I got started & who I am hello. I want to learn Excel, but…
Google Oauth2를 작업하고 있을 때 다음과 같은 오류가 발생한다면, 간단하게 체크해볼 사항이 있다. The given…