init source
This commit is contained in:
10
plugins/ag-grid.client.ts
Normal file
10
plugins/ag-grid.client.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { ModuleRegistry, AllCommunityModule } from "ag-grid-community";
|
||||
import "ag-grid-community/styles/ag-grid.css";
|
||||
import "ag-grid-community/styles/ag-theme-material.css";
|
||||
|
||||
// AG Grid 모듈 등록
|
||||
ModuleRegistry.registerModules([AllCommunityModule]);
|
||||
|
||||
export default defineNuxtPlugin(() => {
|
||||
// 플러그인이 클라이언트에서만 실행되도록 설정
|
||||
});
|
22
plugins/myPlugin.client.ts
Normal file
22
plugins/myPlugin.client.ts
Normal 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}`);
|
||||
// 실제로는 토스트 알림 라이브러리 사용
|
||||
},
|
||||
},
|
||||
};
|
||||
});
|
Reference in New Issue
Block a user