2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-27 14:45:28 +03:00
Files
maska/test/components/ChangeValue.vue
T
2022-12-24 17:49:08 +03:00

12 lines
232 B
Vue

<script setup>
import { ref } from 'vue'
import { vMaska } from '../../src'
const data = ref('123')
</script>
<template>
<input v-maska data-maska="#-#" v-model="data" />
<button @click="data = '345'">Set</button>
</template>