2
0
mirror of https://github.com/tenrok/maska.git synced 2026-06-05 16:42:28 +03:00

Replace "binded" with "bound"

This commit is contained in:
Ilya Semenov
2024-02-13 13:56:56 +07:00
parent 18191d23ef
commit a38e8a2512
9 changed files with 37 additions and 37 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
import { reactive } from 'vue'
import { vMaska, MaskaDetail, MaskInputOptions } from '../../src'
const binded = reactive<Partial<MaskaDetail>>({})
const bound = reactive<Partial<MaskaDetail>>({})
const config = reactive<MaskInputOptions>({
mask: 'A A',
tokens: {
@@ -16,6 +16,6 @@ const config = reactive<MaskInputOptions>({
</script>
<template>
<input v-maska:[config]="binded" />
<div>{{ binded.masked }}</div>
<input v-maska:[config]="bound" />
<div>{{ bound.masked }}</div>
</template>