1.0.5 • Published 3 years ago

jodit-vue3 v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Jodit Vue 3 Editor

A Jodit WYSIWYG editor wrapper for vue3

Installation

Install with npm

  npm install jodit-vue3

Or With yarn

  yarn add jodit-vue3

Import and use

This is just a wrapper, so you will have to include the stylesheet for Jodit in your app for it to work properly

Import globally

//main.js
import 'jodit/build/jodit.min.css'
import { createApp } from 'vue';
import JoditEditor from 'jodit-vue3'

const app = createApp(App);
app.use(JoditEditor);

Import Localy

<script>
import {JoditEditor} from 'jodit-vue3';
export default {
  components: {
    JoditEditor
  },
  ...
}
</script>

and use

//app.vue
<template>
  <jodit-editor v-model="content"></jodit-editor>
</template>

Properties

PropertyTypeRequiredDescription
editorOptionsObjectfalsethe editor options for jodit editor

for a full list of Jodit editor Options, visit https://xdsoft.net/jodit/doc/options/

##example

<template>
  <jodit-editor v-model="content" :editorOptions="options"></jodit-editor>
</template>
<script>
import {JoditEditor} from 'jodit-vue3';
export default {
  name:'Edit',
  components: {
      JoditEditor
  },
  data(){
    return{
      content:"",
      options:{
        textIcons: false,
        iframe: false,
        iframeStyle: '*,.jodit_wysiwyg {color:red;}',
        height: 'auto',
        minHeight:400,
        maxHeight:600,
        defaultMode: Jodit.MODE_WYSIWYG,
        imageDefaultWidth:'100%',
        observer: {
            timeout: 100
        },
        commandToHotkeys: {
            'openreplacedialog': 'ctrl+p'
        },
      }
    }
  }
}
</script>

Author

Follow me

1.0.5

3 years ago

1.0.1

3 years ago

0.9.4

3 years ago

0.9.3

3 years ago

0.9.2

3 years ago

0.9.1

3 years ago

0.9.0

3 years ago

0.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.0

3 years ago