tab, component, popup 변경
This commit is contained in:
20
pages/[tabId]/sampleList.vue
Normal file
20
pages/[tabId]/sampleList.vue
Normal 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>
|
Reference in New Issue
Block a user