import { defineComponent, h } from 'vue' export default defineComponent({ name: 'cron-light', props: { modelValue: { type: String, default: '' } }, emits: ['update:modelValue', 'error'], setup (props) { return () => h('div', { class: 'cron-light-placeholder' }, props.modelValue) } })