17 lines
413 B
Vue
17 lines
413 B
Vue
<script setup>
|
|
definePageMeta({
|
|
layout: 'admin'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<section class="admin-post-editor bg-paper p-6">
|
|
<h1 class="admin-post-editor__title text-3xl font-semibold">
|
|
새 글 작성
|
|
</h1>
|
|
<p class="admin-post-editor__description mt-4 text-sm text-muted">
|
|
마크다운 기반 위지윅 에디터는 다음 단계에서 구현합니다.
|
|
</p>
|
|
</section>
|
|
</template>
|