Socket
Socket
Sign inDemoInstall

v-sanitize-directive

Package Overview
Dependencies
22
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    v-sanitize-directive

A utility library providing input sanitization using dompurify and Vue.js.


Version published
Weekly downloads
1
Maintainers
1
Install size
12.8 MB
Created
Weekly downloads
 

Readme

Source

Vue 3 Sanitize Input Plugin

  • This is a Vue 3 directive for sanitizing input fields using DOMPurify.

vue version vue version

Installing

Package manager

Using npm:

npm i v-sanitize-directive

Then, import and register the component:

Global Registration

In your main.js or main.ts file, globally register the plugin:

main.js

import { sanitizePlugin } from "v-sanitize-directive";
app.use(sanitizePlugin);

Local Registration

  • Composition API
<script lang="ts"  setup>
import { sanitize as vSanitize } from "v-sanitize-directive";
</script>
  • Options API
<script>
import { sanitize } from "v-sanitize-directive";

export default {
  directives: {
    "sanitize": sanitize
  },
}
</script>

Usage

  • Example 1: Options API - In your component.
<script>
import { sanitize } from "v-sanitize-directive";

export default {
  directives: {
    "sanitize": sanitize
  },
  data () {
    return {
       text: ""
    }
  }
}
</script>

<template>
      <input v-sanitize="text"
             v-model="text"
              type="text" />
</template>
  • Example 2: Composition API - In your component.
<script setup>
import { sanitize as vSanitize } from "v-sanitize-directive";
import { ref } from "vue";
const text = ref("");
</script>

<template>
      <input v-sanitize="text"
             v-model="text"
              type="text" />
</template>
  • Example 3: Global Registration with Composition API.After globally registering the plugin, in your component.
<script lang="ts"  setup>
import { ref } from "vue";
const text = ref("");
</script>

<template>
      <input v-sanitize="text"
             v-model="text"
              type="text" />
</template>
  • Example 4: Global Registration with Options API.After globally registering the plugin, in your component.
<script lang="ts" >
export default {
  data() {
    return {
      text: ""
    }
  }
}
</script>

<template>
      <input v-sanitize="text"
             v-model="text"
              type="text" />
</template>

Demo

License

License

Keywords

FAQs

Last updated on 19 May 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc