mirror of
https://github.com/tenrok/maska.git
synced 2026-05-15 11:59:38 +03:00
12 lines
211 B
Vue
12 lines
211 B
Vue
<script setup>
|
|
defineProps(['modelValue'])
|
|
defineEmits(['update:modelValue'])
|
|
</script>
|
|
|
|
<template>
|
|
<input
|
|
:value="modelValue"
|
|
@input="$emit('update:modelValue', $event.target.value)"
|
|
/>
|
|
</template>
|