Easy Cron Editor For Vue.js

Description:

A cron editor component that makes it easier to edit cron expressions in Vue.js app.

Install & Download:

# NPM
$ npm install vue-cron-editor-buefy --save

How to use it:

  1. Install and import.
import VueCronEditorBuefy from 'vue-cron-editor-buefy';
  1. Insert the corn editor into your template.
<template>
  <v-app>
    <v-content>
      <VueCronEditorBuefy v-model="cronExpression"/>
      {{cronExpression}}
    </v-content>
  </v-app>
</template>
  1. Register the component.
export default {
  name: 'App',
  components: {
    VueCronEditorBuefy
  },
  data: () => ({
      cronExpression: "*/1 * * * *"
  }),
};

Download Details:

Author: karoletrych

Live Demohttps://karoletrych.github.io/vue-cron-editor/

Download Linkhttps://github.com/karoletrych/vue-cron-editor/archive/master.zip

Official Websitehttps://github.com/karoletrych/vue-cron-editor

#vuejs #javascript #vue-js

Easy Cron Editor For Vue.js
34.45 GEEK