1.1.3 • Published 2 years ago

vue2-cron-builder v1.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

vue2-cron-builder

Simple vue component to generate cron expression

Copy from https://www.npmjs.com/package/vue-cron-builder and modified to use vue v2.6.11

original author is Sojin antony

how to use

install npm install vue2-cron-builder

Notice: the version > 1.1.0 has limited the minutes value to no less than 5 on the minutes tab. There will show an error message if you input a value of 1-4 or >60.

<template>
  <Cron showResultCron="true" :cron="cron" showResultText="true" @cron-change="valChanged"/>
</template>

<script>
import Cron from 'vue-cron-builder'
import 'vue-cron-builder/dist/cron.css';

export default {
  name: 'App',
  components: {
    Cron
  },
  data() {
    return {
      cron : '0 0 4 ? * MON *',
    }
  },
  methods: {
    valChanged(val) {
      this.cron = val
    }
  },
}
</script>

Props

PropDescriptionDefaultMandatory
croncron expressionNo
cron-changeYes
showResultTextshow in readable text formatfalseNo
showResultCronshow cron expressionfalseNo
translationtranslation objectdefault translation(en)No
localelocale for cronstrueenNo
optionsOptions for Cron component, *Must pass a valid cron value for available headersAll available headersNo

translation

Expects a method. Use this prop for localization support. vue-cron-builder will use this values for every key. List of keys are available here

locale option should be set for correct ResultText translation. Please visit cronstrue for supported locales.

Options

options.headers

import HEADER  from 'vue-cron-builder/dist/header';

const options = {
  headers: [HEADER.MONTHLY, HEADER.WEEKLY, HEADER.MINUTES, HEADER.HOURLY, HEADER.DAILY, HEADER.CUSTOM]
};

for more info, please check original author's github here

1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago