Appearance
CKEditor 4 컴포넌트입니다.
<nv-ckeditor v-model="content" />
<script setup lang="ts"> import { ref } from 'vue'; const content = ref('<p>초기 내용입니다.</p>'); </script>