Giter Club home page Giter Club logo

vue-poor-editor's Introduction

Downloads Version License

NPM NPM

How to use

Install

$ npm i vue-poor-editor

Use in browser

index.html

<section>
  <div id="app">
    <vue-poor-editor 
      v-model="html" @input="editorListener" @submit:enter="sendContent"></vue-poor-editor>
  </div>
</section>
new Vue({
  el: '#app',
  data: {
    html: 'write something'
  },
  methods: {
    editorListener: function (html) {
      this.html = html
    },
    sendContent: function (html) {
      axios.post('url', {
        data: html
      })
    }
  }
})

Options

  • borderLess

type Boolean
default true

remove border box editor

  <vue-poor-editor 
    v-model="html" @input="editorListener"
    :border-less="true"></vue-poor-editor>
  • instantSend

type Boolean
default true

activated submit on enter event

  <vue-poor-editor 
    v-model="html" @input="editorListener"
    :instant-send="true"></vue-poor-editor>
  • autoFormat

type Boolean
default true

auto format when you paste text from clipboard

  <vue-poor-editor 
    v-model="html" @input="editorListener"
    :auto-format="true"></vue-poor-editor>
  • minHeight

type String
default 100px

resize height box editor

  <vue-poor-editor 
    v-model="html" @input="editorListener"
    min-height="400px"></vue-poor-editor>
  • width

type String
default 100%

resize width box editor

  <vue-poor-editor 
    v-model="html" @input="editorListener"
    witdh="700px"></vue-poor-editor>

Event

  • Input

listen change html content

  <vue-poor-editor 
    v-model="html" @input="editorListener"></vue-poor-editor>
  • Submit:enter

get content when entered (which 13 without shift key)

this event active when instantSend option is true

  <vue-poor-editor 
    v-model="html" @submit:enter="sendContent"></vue-poor-editor>

vue-poor-editor's People

Contributors

afrianjunior avatar

Stargazers

Ario Setiawan avatar  avatar Irnovi Albaweny avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.