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

feat!: rework for v3

- new directive format: pass options as value, bound as argument with modifiers
- update and checkValue methods in MaskInput
This commit is contained in:
Alexander Shabunevich
2024-03-30 12:39:22 +03:00
parent fe2dc8a766
commit cd1e9f3564
15 changed files with 188 additions and 199 deletions
+3 -5
View File
@@ -4,9 +4,7 @@ import { vMaska } from '../../src'
export default {
data() {
return {
bound: {
masked: ''
}
bound: ''
}
},
directives: {
@@ -16,6 +14,6 @@ export default {
</script>
<template>
<input v-maska="bound" data-maska="#-#" />
<div>{{ bound.masked }}</div>
<input v-maska:bound data-maska="#-#" />
<div>{{ bound }}</div>
</template>