2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-24 14:04:08 +03:00
Files
2024-06-02 16:49:41 +03:00

11 lines
203 B
Vue

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