0.0.1 • Published 3 years ago

iview-cron v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

iview-cron

提取已经封装好的cron组件,变成npm包方便他人使用

参数

该组件有且只有一个属性 名称 | 说明 | 类型 | 默认值 ------|-------|-------|------ value | cron表达式,可以使用 v-model 双向绑定数据 | String | -

使用

<template>
  <Cron v-model="cron" />
</template>
<script>
  import Cron from 'iview-cron'
  export default {
    component: { Cron },
    data() {
      return {
        cron: ''
      }
    }
  }
</script>