vue-safe-html
Version:
A Vue directive which renders sanitised HTML dynamically
120 lines (83 loc) • 2.55 kB
Markdown

[](https://www.npmjs.com/package/vue-safe-html)
[](https://github.com/ecosia/vue-safe-html/tree/main)
[](https://vuejs.org)
[](https://v3.vuejs.org)
A Vue directive which renders sanitised HTML dynamically. Zero dependencies, compatible with Vue versions 3 and 2, TypeScript-ready.
**Note:** This library is not XSS-safe, but only strips tags programmatically.
Install package:
```sh
npm install vue-safe-html
yarn add vue-safe-html
```
Use the plugin:
```js
import Vue from 'vue';
import VueSafeHTML from 'vue-safe-html';
Vue.use(VueSafeHTML);
```
In your component:
```html
<template>
<div v-safe-html="myUnsafeHTML">
</template>
```
```js
export default {
computed: {
myUnsafeHTML() {
return '<script>oh my!</script> I am safe!';
}
}
}
```
Renders to:
```html
<div>I am safe!</div>
```
Array of strings. Default: `['a', 'b', 'br', 'strong', 'i', 'em', 'mark', 'small', 'del', 'ins', 'sub', 'sup']`.
Customize the tags that are allowed to be rendered, either by providing new ones:
```js
Vue.use(VueSafeHTML, {
allowedTags: ['marquee', 'blockquote'],
});
```
Or extending the default ones:
```js
import VueSafeHTML, { allowedTags } from 'vue-safe-html';
Vue.use(VueSafeHTML, {
allowedTags: [...allowedTags, 'marquee', 'blockquote'],
});
```
If no tags are passed, all tags are stripped:
```js
import VueSafeHTML from 'vue-safe-html';
Vue.use(VueSafeHTML, {
allowedTags: [],
});
```
It is also possible to provide custom allowed tags directly to the directive tag, using directive modifiers. This allows local override of the option:
```html
<template>
<!-- only allow p and strong tags -->
<div v-safe-html.p.strong="myUnsafeHTML">
</template>
```
Array of strings. Default: []
Customize the tag attributes that are allowed to be rendered:
```js
Vue.use(VueSafeHTML, {
allowedTags: ['a'],
allowedAttributes: ['title', 'class', 'href'],
});
`vue-safe-html` is written as a Vue plugin so you can easily use it inside Nuxt by following [the Nuxt documentation](https://nuxtjs.org/docs/2.x/directory-structure/plugins#vue-plugins).
[](./LICENSE)