vueditor

A wysiwyg editor written in Vue.js and Vuex.js

  • 所有者: hifarer/vueditor
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Vueditor

vueditor
vueditor
JavaScript Style Guide

中文文档

A wysiwyg editor written in Vue.js and Vuex.js, require Vue.js 2.0.0, Vuex.js 2.0.0 and above.

Browser compatibility: Chrome, Firefox, Safari, IE 9+.

Online DEMO

Screenshot

vueditor

Features

  • Customizable
  • Light weighted, very few dependencies
  • Plugin support

Installation

npm install vueditor

If you prefer to use it via script tag, download the last release package and add vueditor.min.js, vueditor.min.css to your page.

Usage

Vue.use(Vueditor, config)

Use it in the following cases:

  1. Only one editor required
  2. Multiple editors required but shared the same config
import Vue from 'vue'
import Vuex from 'vuex'
import Vueditor from 'vueditor'

import 'vueditor/dist/style/vueditor.min.css'

// your config here
let config = {
  toolbar: [
    'removeFormat', 'undo', ', ', 'elements', 'fontName', 'fontSize', 'foreColor', 'backColor'
  ],
  fontName: [
    {val: 'arial black'}, 
    {val: 'times new roman'}, 
    {val: 'Courier New'}
  ],
  fontSize: ['12px', '14px', '16px', '18px', '0.8rem', '1.0rem', '1.2rem', '1.5rem', '2.0rem'],
  uploadUrl: ''
};

Vue.use(Vuex);
Vue.use(Vueditor, config);
// create a root instance
new Vue({
  el: '#editorContainer'
});

Then in your vue template somewhere:

<template>
  <div>
    ...
    <Vueditor></Vueditor>
  </div>
</template>

To get and set content you need to acquire the Vueditor component, you can use $children[index] or ref to do that.

let parent = new Vue({
  el: '#editor1'
});
let editor = parent.$children[0];
editor.setContent('your content here');
editor.getContent();

createEditor(selector, config)

Call createEditor and pass specific config as parameter respectively for multiple editors in a page.


  import Vue from 'vue'
  import Vuex from 'vuex'
  import { createEditor } from 'vueditor'

  import 'vueditor/dist/style/vueditor.min.css'
  
  Vue.use(Vuex);

  createEditor('#editorContainer', {
    toolbar: [
      'removeFormat', 'undo', ', ', 'elements', 'fontName', 'fontSize', 'foreColor', 'backColor', 
    ],
    uploadUrl: '',
    id: '',
    classList: []
  });

The initialized element will be replaced in this case, you can add classList or id to the config for adding styles, the rendered element will have these attributes. createEditor returns a vueditor instance, you can set and get content with it:

let inst = createEditor(...);
inst.setContent('your content here');
inst.getContent();

File upload

You can set uploadUrl attribute in config when you initialize an editor, all the upload stuffs will be handled automatically. If you perfer do it yourself or has some authrization to do before uploading, just add a function upload to the instance returned by createEditor. When an upload action triggered, vueditor will call this function instead of the build-in function. The upload function has two arguments: obj refer to the file input element, callback requires the uploaded file url as argument for inserting content to the editor, See the example below:

editor.upload = function (obj, callback) {
  let formData = new FormData();
  let xhr = new XMLHttpRequest();
  formData.append('fieldName', obj.files[0]);
  xhr.open('POST', 'upload/url');
  xhr.send(formData);
  xhr.onload = function () {
    callback(xhr.responseText);
  };
  xhr.onerror = function (err) {
    console.log(err);
  }
}

language setting

The editor's default language is English, to set to other language, you will need to translate for your own.
The dist/language folder has an full example inside. Adding a script tag or use import, require to
bring the language object in, then make it an attribute of the config for initialize. See the example below:

Vue.use(Vueditor, {
  ...
  lang: languageObject,
});

Options for configuration:, Name, Type, Description, ---------------------, ----------, ---------------------------------------------------------------------------------------------------------------------------, spellcheck, Boolean, Check spell or not, default is false, lang, Object, Interface language, default is English, toolbar, Array, Buttons on the toolbar, use , or divider as separator for grouping, fontName, Array, The font-family select's options, val refer to the actual css value, abbr refer to the option's text, abbr is optional when equals to val, fontSize, Array, The font-size select's options, uploadUrl, String, File upload url, the return result of this must be a string refer to the uploaded file url, leave it empty will end up with local preview, id, String, id for the rendered editor element, classList, Array, className for the rendered editor element, plugins, Array, plugins for editor, Default value of the above fields:

{
  toolbar: [
    'removeFormat', 'undo', ', ', 'elements', 'fontName', 'fontSize', 'foreColor', 'backColor', 'divider',
    'bold', 'italic', 'underline', 'strikeThrough', 'links', 'divider', 'subscript', 'superscript',
    'divider', 'justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull', ', ', 'indent', 'outdent',
    'insertOrderedList', 'insertUnorderedList', ', ', 'picture', 'tables', ', ', 'switchView'
  ],
  fontName: [
    {val: 'arial black'}, 
    {val: 'times new roman'}, 
    {val: 'Courier New'}
  ],
  fontSize: [
    '12px', '14px', '16px', '18px', '20px', '24px', '28px', '32px', '36px'
  ],
  uploadUrl: ''
  id: '',
  classList: []
};

Change log

See change log

Bug confirmed

TODO

  • Markdown support
  • Full screen and fixed toolbar features
  • Popup menu position auto adjust
  • Advanced table options
  • Code highlight
  • Plugin support
  • XSS prevention
  • Test

License

MIT

Copyright (c) 2016 hifarer

主要指标

概览
名称与所有者hifarer/vueditor
主编程语言Vue
编程语言JavaScript (语言数: 4)
平台
许可证MIT License
所有者活动
创建于2016-05-27 03:50:14
推送于2023-10-31 11:35:05
最后一次提交2021-07-08 21:17:54
发布数2
最新版本名称v0.3.1 (发布于 )
第一版名称v0.3.0 (发布于 2017-11-16 17:31:37)
用户参与
星数643
关注者数23
派生数109
提交数90
已启用问题?
问题数64
打开的问题数39
拉请求数4
打开的拉请求数9
关闭的拉请求数3
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?