2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-15 11:59:38 +03:00
Files
maska/test/vue/BindUnmasked.vue
T
2024-06-02 16:49:41 +03:00

12 lines
224 B
Vue

<script setup lang="ts">
import { ref } from 'vue'
import { vMaska } from '../../src/vue'
const bound = ref('')
</script>
<template>
<input v-maska:bound.unmasked data-maska="#-#" />
<div>{{ bound }}</div>
</template>