We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42689e8 commit 6201105Copy full SHA for 6201105
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "vue-manual-data-masking",
3
"description": "A vue2 component for manual data masking",
4
- "version": "0.1.3",
+ "version": "0.1.4",
5
"private": false,
6
"author": "HC200ok",
7
"license": "MIT",
src/assets/logo.png
-6.69 KB
src/components/DataMasking.vue
@@ -7,7 +7,7 @@
>
8
<!-- {{ chunks }} -->
9
<template v-for="(item, index) in chunks">
10
- <span v-if="item.type === 'text'" :key="index" v-html="item.content" />
+ <span v-if="item.type === 'text'" :key="index">{{item.content}}</span>
11
<br v-if="item.type === 'wrap'" :key="index" />
12
<data-masked
13
v-if="item.type === 'masked'"
0 commit comments