17 lines
392 B
Vue
17 lines
392 B
Vue
<script setup>
|
|
definePageMeta({
|
|
layout: 'admin'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<section class="admin-post-edit bg-paper p-6">
|
|
<h1 class="admin-post-edit__title text-3xl font-semibold">
|
|
글 수정
|
|
</h1>
|
|
<p class="admin-post-edit__description mt-4 text-sm text-muted">
|
|
저장된 글 데이터 연결 후 수정 화면을 구성합니다.
|
|
</p>
|
|
</section>
|
|
</template>
|