corrad-bp/components/formkit/DateTimePicker.vue
2025-04-09 11:16:18 +08: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>