@engrjerickcmangalus/ckeditor-nuxt-custom-build-simpleuploader

4.0.10 • 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/ckeditor-nuxt-custom-build-simpleuploader

Weekly Downloads

1

Version

4.0.10

License

MIT

Unpacked Size

6.52 MB

Total Files

17

Last publish

Collaborators

  • engrjerickcmangalus