20 lines
681 B
Vue
20 lines
681 B
Vue
<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> |