Install & Download:
# NPM
$ npm install vue-cron-editor-buefy --saveDescription:
A cron editor component that makes it easier to edit cron expressions in Vue.js app.
How to use it:
1. Install and import.
import VueCronEditorBuefy from 'vue-cron-editor-buefy';
2. Insert the corn editor into your template.
<template>
<v-app>
<v-content>
<VueCronEditorBuefy v-model="cronExpression"/>
{{cronExpression}}
</v-content>
</v-app>
</template>3. Register the component.
export default {
name: 'App',
components: {
VueCronEditorBuefy
},
data: () => ({
cronExpression: "*/1 * * * *"
}),
};Preview:

Changelog:
03/28/2021
- v0.1.0
09/14/2020
- fix default for tabs
v0.2.13 (08/19/2020)
- make it possible to show/hide all tabs
v0.1.0 (07/18/2020)
- Update