관리자 미리보기에서 문단·목록·인용을 contenteditable로 편집하고, Cmd+E 전환·사용자 지정 순서 번호·줄 삭제·화살표 줄 이동을 지원한다. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
299 B
Vue
18 lines
299 B
Vue
<script setup>
|
|
defineProps({
|
|
ordered: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="ordered ? 'ol' : 'ul'"
|
|
class="prose-list mb-2.5 list-none space-y-2 pl-0 text-[15px] leading-8 text-[var(--site-text)]"
|
|
>
|
|
<slot />
|
|
</component>
|
|
</template>
|