jodit-vue3
Version:
A Jodit WYSIWYG editor wrapper for vue3
109 lines (87 loc) • 1.99 kB
Markdown
A Jodit WYSIWYG editor wrapper for vue3
Install with npm
```bash
npm install jodit-vue3
```
Or With yarn
```bash
yarn add jodit-vue3
```
This is just a wrapper, so you will have to include the stylesheet for Jodit in your app for it to work properly
```bash
//main.js
import 'jodit/build/jodit.min.css'
import { createApp } from 'vue';
import JoditEditor from 'jodit-vue3'
const app = createApp(App);
app.use(JoditEditor);
```
```bash
<script>
import {JoditEditor} from 'jodit-vue3';
export default {
components: {
JoditEditor
},
...
}
</script>
```
```bash
//app.vue
<template>
<jodit-editor v-model="content"></jodit-editor>
</template>
```
| Property | Type | Required | Description |
| :-------- | :------- | :---- | :------------------------- |
| editorOptions | Object | false | the editor options for jodit editor |
for a full list of Jodit editor Options, visit https://xdsoft.net/jodit/doc/options/
```bash
<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>
```
- [@dilantsasi](https://www.github.com/dilantsasi)
- [Twitter@dilantsasi](https://www.twitter.com/dilantsasi)
- [LinkedIn](https://www.linkedin.com/in/dilan-tsasi-21656a134)