2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-15 11:59:38 +03:00
Files
maska/test/vue/ChangeValue.vue
T
2024-06-02 16:49:41 +03:00

12 lines
256 B
Vue

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