A Vue.js UI component that provides an intuitive editor for generating and validating cron expressions. v1.3.1 is current; updates are infrequent. Supports standard 5-field cron syntax with dropdowns and free-text input. Differentiator: built-in validation with human-readable feedback, localization support, and no external runtime dependencies beyond Vue 3.
npm install cron-expression-inputNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic usage of the CronExpressionInput component with binding to a cron expression string and change event.
Use a different library if you need seconds or year support.
Ensure the initial expression prop is a valid cron pattern.
Use `:expression="val" @change="val = $event"` instead.
Upgrade to Vue 3 or stick with version 1.2.x for Vue 2.
Run `npm install cron-expression-input` or `yarn add cron-expression-input`.
Use `import CronExpressionInput from 'cron-expression-input'` instead of `import { CronExpressionInput } from 'cron-expression-input'`.Use `expression` prop and `@change` event instead of v-model.