diff --git a/src/frontend/src/components/QuantMasterGrid.vue b/src/frontend/src/components/QuantMasterGrid.vue
index 0f07b59d..76f99cdb 100644
--- a/src/frontend/src/components/QuantMasterGrid.vue
+++ b/src/frontend/src/components/QuantMasterGrid.vue
@@ -54,7 +54,7 @@ const onRowClick = (item: any) => {
@click="onRowClick(item)"
>
{
- |
+ |
조회된 데이터가 없습니다.
|
diff --git a/src/frontend/src/views/ComponentShowcaseView.vue b/src/frontend/src/views/ComponentShowcaseView.vue
index 1f41ca22..a8a14bf8 100644
--- a/src/frontend/src/views/ComponentShowcaseView.vue
+++ b/src/frontend/src/views/ComponentShowcaseView.vue
@@ -27,8 +27,8 @@
- QuantMasterGrid (마스터-디테일 트리 그리드)
-
+ QuantMasterGrid (마스터-디테일 테이블 그리드)
+
@@ -296,6 +296,13 @@ const domainBarcode = ref('8801234567890');
const aiValue = ref('');
// AG Grid Data
+const masterGridHeaders = ref([
+ { key: 'orderNo', label: '주문번호', width: '130px' },
+ { key: 'customerName', label: '거래처명' },
+ { key: 'orderDate', label: '주문일자', width: '110px', align: 'center' as const },
+ { key: 'status', label: '상태', width: '90px', align: 'center' as const }
+]);
+
const showcaseColumnDefs = ref([
{ field: 'orderNo', headerName: '주문번호', width: 140 },
{ field: 'customerName', headerName: '거래처명', width: 180 },
|