mirror of
https://github.com/tenrok/maska.git
synced 2026-05-15 11:59:38 +03:00
12 lines
241 B
Vue
12 lines
241 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { vMaska } from '../../src'
|
|
|
|
const value = ref('123')
|
|
</script>
|
|
|
|
<template>
|
|
<input v-maska data-maska="#-#" data-maska-eager v-model="value" />
|
|
<div>{{ value }}</div>
|
|
</template>
|