1.0.1 • Published 6 years ago

vue-sanitize-html-plugin v1.0.1

Weekly downloads
11
License
MIT
Repository
github
Last release
6 years ago

vue-sanitize-html-plugin

A sanitizeHtml wrapper for Vue

Description

It's sanitize-html wrapper for Vue.
You can use sanitize method or v-sanitaize directive by this plugin.

Example

import Vue from 'vue';
import VueSanitizeHtml from 'vue-sanitize-html-plugin';

Vue.use(VueSanitizeHtml, {
  allowedTags: [ 'a' ],
  allowedAttributes: {
    'a': [ 'href' ],
  }
});

var myComp = Vue.extend({
  template: `<div>
    {{ sanitize('<a href="https://example.com">Link to example</a>') }}
    <span
      v-sanitaize
      v-html>How are you?</span>
  </div>`
});

var vm = new Vue({
  el: '#app',
  
  components: {myComp},
  
  template: `<div>
    <my-comp></my-comp>
  </div>`
});

Requirement

vue-sanitize-html-plugin is intended for use with Vue ^2.5.2.

Install

npm install vue-sanitize-html-plugin --save

or install with yarn:

yarn add vue-sanitize-html-plugin

Usage

Import plugin with options

It's basing vue-sanitize-html-plugin on sanitize-html. So, you can set options.

import VueSanitizeHtml from 'vue-sanitize-html-plugin';

Vue.use(VueSanitizeHtml, {
  allowedTags: [ 'a' ],
  allowedAttributes: {
    'a': [ 'href' ],
  }
});

How to set up a sanitizing target

  • sanitize method
var myComp = Vue.extend({
  template: `<div>
    {{ sanitize('<a href="https://example.com">Link to example</a>') }}
  </div>`
});

with options

var myComp = Vue.extend({
  template: `<div>
    {{ sanitize('<img src="https://example.com/foo.jpg" />', { allowedTags: [ 'img' ] }) }}
  </div>`
});
  • v-sanitaize directive
var myComp = Vue.extend({
  template: `<div>
    <span
      v-sanitaize
      v-html>How are you?</span>
  </div>`
});

with options

var myComp = Vue.extend({
  template: `<div>
    <span
      v-sanitaize="{ allowedTags: [ 'img' ] }"
      v-html>How are you?</span>
  </div>`
});

Contribution

  1. Fork it ( http://github.com/shibukk/vue-sanitize-html-plugin/fork )
  2. Create your feature branch ( git checkout -b my-new-feature )
  3. Commit your changes ( git commit -am 'Add some feature' )
  4. Push to the branch ( git push origin my-new-feature )
  5. Create new Pull Request

Licence

MIT

Author

shibukk