Files
bio_frontend/pages/[tabId]/sampleList.vue

20 lines
681 B
Vue
Raw Permalink Normal View History

2025-08-22 14:01:30 +09:00
<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>