matteodem / vue-contenteditable-directive

Vue contenteditable: Vue's v-model isn't compatible with contentdeditable divs - this directive fills in (NPM, Vue.js)*

Home Page:https://www.npmjs.com/package/vue-contenteditable-directive

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue-contenteditable-directive

Vue's built in v-model isn't compatible with contenteditable divs - this directive fills in.

Why use contenteditable divs?

First of all - if you can use a textarea or input with v-model, do that instead. There are a couple of quirks, though, in the implementation of textarea that make contenteditable divs a good fit for certain applications.

  • Editable divs shrink and grow with the text inside of them. Textarea does not.
  • Formatting is generally more extensible in a contenteditable div

Usage

import contenteditableDirective from 'vue-contenteditable-directive'
//...
Vue.use(contenteditableDirective)
<template>
  <div v-contenteditable:message="isEnabled" />
</template>

<script>
export default {
  data() {
    return {
      isEnabled: true,
      message: "hello"
    }
  }
}
</script>

The directive uses innerText to manipulate the DOM by default. However, you can use the modifier, dangerousHTML, to allow the directive to use and set the innerHTML of the editable element:

v-contenteditable:someDataKey.dangerousHTML="true"

Be sure to protect your app against XSS!

About

Vue contenteditable: Vue's v-model isn't compatible with contentdeditable divs - this directive fills in (NPM, Vue.js)*

https://www.npmjs.com/package/vue-contenteditable-directive

License:Apache License 2.0


Languages

Language:JavaScript 100.0%