2
0
mirror of https://github.com/tenrok/maska.git synced 2026-06-08 17:22:27 +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,10 +2,10 @@
import { reactive } from 'vue'
import { MaskaDetail, vMaska } from '../../src'
const binded = reactive<Partial<MaskaDetail>>({})
const bound = reactive<Partial<MaskaDetail>>({})
</script>
<template>
<input v-maska="binded" data-maska="#-#" value="123" />
<div>{{ binded.masked }}</div>
<input v-maska="bound" data-maska="#-#" value="123" />
<div>{{ bound.masked }}</div>
</template>