tab, component, popup 변경

This commit is contained in:
2025-08-22 14:01:30 +09:00
parent fd6fe43498
commit f801e876d2
22 changed files with 625 additions and 145 deletions

View File

@@ -0,0 +1,20 @@
<template>
<ContentsWrapper> <!-- wrapper(title) 추가 -->
<template #actions> <!--title 우측 버튼 설정-->
<button>스케쥴 확인</button>
<button @click="addSamplePopupShow = true">샘플 등록</button>
</template>
<!--메인 콘텐츠 영역-->
<input type="text" >
<addSamplePopup v-model:show="addSamplePopupShow" />
</ContentsWrapper>
</template>
<script setup lang="ts">
import addSamplePopup from '../popup/addSamplePopup.vue';
// title(wrapper) 설정
definePageMeta({
title: '조회 결과'
})
const addSamplePopupShow = ref(false);
</script>