2
0
mirror of https://github.com/tenrok/maska.git synced 2026-06-02 16:04:05 +03:00
Files
maska/test/vue/Simple.vue
T
Alexander Shabunevich 488a52f760 feat: simple mode for mask directive
Allow string passing to set a mask without data-maska attribute
2024-06-12 17:52:55 +03:00

8 lines
126 B
Vue

<script setup lang="ts">
import { vMaska } from '../../src/vue'
</script>
<template>
<input v-maska="'#-#'" />
</template>