2
0
mirror of https://github.com/tenrok/maska.git synced 2026-06-11 18:02:27 +03:00
Files
maska/packages/vue/test/components/BindCompleted.vue
T
Alexander Shabunevich 4de44ef888 feat!: separate packages
2024-04-17 19:31:22 +03:00

13 lines
278 B
Vue

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