mirror of
https://github.com/tenrok/maska.git
synced 2026-06-05 16:42:28 +03:00
12 lines
222 B
Vue
12 lines
222 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { vMaska } from '../../src/vue'
|
|
|
|
const bound = ref('')
|
|
</script>
|
|
|
|
<template>
|
|
<input v-maska:bound.masked data-maska="#-#" />
|
|
<div>{{ bound }}</div>
|
|
</template>
|