글쓰기 헤더 모드 전환·미디어 검색, Update 시 발행일 유지, 설정 카드 편집/저장 분리, 인용·인라인 코드 스타일 반영. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
373 B
Vue
19 lines
373 B
Vue
<script setup>
|
|
defineProps({
|
|
ordered: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="ordered ? 'ol' : 'ul'"
|
|
class="prose-list mb-2.5 space-y-2 pl-5 text-[15px] leading-8 text-[var(--site-text)] marker:text-[var(--site-muted)]"
|
|
:class="ordered ? 'list-decimal' : 'list-disc'"
|
|
>
|
|
<slot />
|
|
</component>
|
|
</template>
|