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
@@ -4,7 +4,7 @@ import { vMaska } from '../../src'
export default {
data() {
return {
binded: {
bound: {
masked: ''
}
}
@@ -16,6 +16,6 @@ export default {
</script>
<template>
<input v-maska="binded" data-maska="#-#" />
<div>{{ binded.masked }}</div>
<input v-maska="bound" data-maska="#-#" />
<div>{{ bound.masked }}</div>
</template>