1.0.0 • Published 8 years ago

scutech-schedule v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

scutech-schedule

It's a vue schedule component, and has two themes: element-ui and bootstrap

Installation

  npm i scutech-schedule --save

Basic Usage

  // main.js
  import schedule from 'scutech-schedule'

  Vue.use(schedule)

  // xxx.vue
  <scutech-schedule v-model="schedule"/>

first of all, the component has 'daily', 'once', 'hourly', 'immediate', 'monthly', 'weekly', six options. it has the component has a v-model value, you can define it yourself, for example:

  // import moment from 'moment'

  schedule: {
    type: 'hourly',
    startTime: moment(),
    endTime: moment(),
    interval: 1.0,
    interval_minute: 60
  }

Configuration