EDMS/components/formkit/DateTimePicker.vue
2025-05-27 04:00:34 +00:00

14 lines
236 B
Vue

<script setup>
const props = defineProps({
context: Object,
});
function handleInput(e) {
props.context.node.input(e.target.value);
}
</script>
<template>
<input @input="handleInput" :value="props.context._value" />
</template>