-
Notifications
You must be signed in to change notification settings - Fork 0
JCron
xinwu-yang edited this page Mar 1, 2023
·
1 revision
cron表达式编辑组件,通过简单的人类语言选择配置,生成cron表达式。
<template>
<j-cron v-model="cronExpression"/>
</template>
<script>
export default {
data() {
return {
cronExpression: '* * * * * ? *'
}
}
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
value(v-model) | cron表达式 | string |
事件名称 | 说明 | 回调参数 |
---|---|---|
change | 点击确定后调用 | function(value) |