728x90
ckeditor 설치
npm install ckeditor4-vue
vue 선언한곳에 사용하기 (main.js)
import CKEditor from 'ckeditor4-vue';
Vue.use( CKEditor );
vue 파일에서 사용하기
<div>
<ckeditor v-model="editorData" :config="editorConfig"></ckeditor>
</div>
<script>
export default{
data(){
return {
editorData: '',
editorConfig: {
// The configuration of the editor.
}
}
}
}
</script>
원래는 editor5 쓰려고했는데 계속 오류가 발생해서 editor4로 변경하여 하니 한번에 바로 되었다!
#공식사이트
ckeditor.com/docs/ckeditor4/latest/guide/dev_vue.html
728x90
'FRAMEWORK > VUE' 카테고리의 다른 글
VUE Window Resizing check (0) | 2021.02.22 |
---|---|
[vuejs]regeneratorruntime is not defined vue async 에러 해결 (0) | 2021.01.19 |
open_now is deprecated as of November 2019. Use the isOpen() method from a PlacesService.getDetails() result instead. (0) | 2020.11.23 |
vue에서 클릭 이벤트시 class 포함여부확인 (0) | 2020.11.13 |
Vue js 트랜지션 알아보기(단일 엘리먼트/컴포넌트) (0) | 2020.11.04 |