Vue.js 3 (original) (raw)

Compatibility

For Vue.js 1.x - 2.x, use this guide.

Installation

Install vue-froala-wysiwyg from npm

npm install vue-froala-wysiwyg --save

Integration

1. Require and use Froala Editor component inside your application.

main.js file:

//Import Froala Editor import 'froala-editor/js/plugins.pkgd.min.js';

//Import third party plugins import 'froala-editor/js/third_party/embedly.min'; import 'froala-editor/js/third_party/font_awesome.min'; import 'froala-editor/js/third_party/spell_checker.min'; import 'froala-editor/js/third_party/image_tui.min';

// Import Froala Editor css files. import 'froala-editor/css/froala_editor.pkgd.min.css'; import 'froala-editor/css/froala_style.min.css';

import App from './App' import { createApp } from 'vue' import VueFroala from 'vue-froala-wysiwyg';

const app = createApp(App);

app.use(VueFroala); app.mount('#app');

App.vue file:

2. Make sure you have the right Webpack settings for loading the CSS files.

var webpack = require('webpack') var path = require('path')

module.exports = { module: { loaders: [ // ...

  // Css loader.
  {
    test: /\.css$/,
    loader: 'cssLoader'
  }
]

}, vue: { loaders: { // ...

  // Css loader for Webpack 1.x .
  css: 'cssLoader'
}

} })

Usage

Initialize

// If model is initialized, 'Init text' text child will be overwritten. Init text

:tag attr is used to tell on which tag the editor is initialized.

There are special tags: a, button, img, input.

Options

You can pass editor options as component attribute (optional).

:config="config"

You can pass any existing Froala option. Consult the Froala documentation to view the list of all the available options:

config: { placeholderText: 'Edit Your Content Here!', charCounterCount: false }

Aditional option is used: * immediateVueModelUpdate: (default: false) This option updates the Vue model as soon as a key is released in the editor. Note that it may affect performances.

Events and Methods

Events can be passed in with the options, with a key events and object where the key is the event name and the value is the callback function.

config: { placeholder: "Edit Me", events : { 'froalaEditor.focus' : function(e, editor) { console.log(editor.selection.get()); } } }

Using the editor instance from the arguments of the callback you can call editor methods as described in the method docs.

Froala events are described in the events docs.

Model

The WYSIWYG HTML editor content model. Two way binding is suported.

v-model:value="model"

Use the content in other places:

Learn More About The Integration And Usage

Special tags

You can also use the editor on img, button, input and a tags:

The model must be an object containing the attributes for your special tags. Example:

imgModel: { src: require('./image.jpg') }

The model will change as the attributes change during usage.

buttonModel: { innerHTML: 'Click Me' }

As the button text is modified by the editor, the innerHTML attribute from buttonModel model will be modified too.

Specific option for special tags

config: { vueIgnoreAttrs: ['class', 'id'] }

Custom Buttons

You can pass the custom buttons to the editor by following way:

App.vue file:

Now you can use these buttons in options:
toolbarButtons: [['undo', 'redo' , 'bold'], ['alert', 'clear', 'insert']],

Learn More About Adding Custom Buttons

Manual Instantiation

Gets the functionality to operate on the editor: create, destroy and get editor instance. Use it if you want to manually initialize the editor.

:onManualControllerReady="initialize"

initialize: function(initControls) { this.initControls = initControls; this.deleteAll = () => { this.initControls.getEditor().html.set(''); this.initControls.getEditor().undo.reset(); this.initControls.getEditor().undo.saveStep(); }; }

The object received by the function will contain the following methods:

Displaying HTML

To display content created with the froala editor use the froalaView component.

Development environment setup

If you want to contribute to vue-froala-wyswiyg, you will first need to install the required tools to get the project going.

Prerequisites

Install dependencies

$ npm install

Build

$ npm run build

Run Demo

$ npm run dev