init source

This commit is contained in:
leejisun9
2025-08-08 13:11:33 +09:00
parent 02660627d2
commit 61d947a644
57 changed files with 1852863 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
export default defineNuxtPlugin(() => {
return {
provide: {
// 통화 포맷팅 함수 제공
formatCurrency: (amount: number): string => {
return new Intl.NumberFormat("ko-KR", {
style: "currency",
currency: "KRW",
}).format(amount);
},
// 알림 표시 함수
showNotification: (
message: string,
type: "success" | "error" | "warning" = "success"
) => {
console.log(`[${type.toUpperCase()}] ${message}`);
// 실제로는 토스트 알림 라이브러리 사용
},
},
};
});