Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 392 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 392 Bytes

vue2-ckeditor5

Integrate Ckeditor 5 into VUE 2 component, two way binding

yarn add @ckeditor/ckeditor5-build-classic

Usage:

import Ckeditor from '@/components/Ckeditor'

export default {
  name: 'EditPage',
  ...
  components: {
    ...
    Ckeditor,
    ...
...    

<template>
  ...
  <ckeditor v-model="model"></ckeditor>
  ...
</template>

Peace!