@engrjerickcmangalus/ckeditor5-build-custom-inlineupload

1.1.5 • Public • Published

ckeditor-nuxt

Requirements

yarn add nuxt # OR npm i nuxt

Component integration

yarn add @blowstack/ckeditor-nuxt # OR npm install --save @blowstack/ckeditor-nuxt

Usage

<template>
........
  <client-only placeholder="loading...">
    <ckeditor-nuxt v-model="contentHolder" :config="editorConfig"  />
  </client-only>
........
</template>

<script>
export default {
    components: {
      'ckeditor-nuxt': () => import(' @blowstack/ckeditor-nuxt')
    },
    data() {
      return {
    	editorConfig: {
          simpleUpload: {
            uploadUrl: 'path_to_image_controller',
            headers: {
              'Authorization': 'optional_token'
            }
          }
        }
      }
   }
}
</script>

Package Sidebar

Install

npm i @engrjerickcmangalus/ckeditor5-build-custom-inlineupload

Weekly Downloads

1

Version

1.1.5

License

MIT

Unpacked Size

7.17 MB

Total Files

18

Last publish

Collaborators

  • engrjerickcmangalus