You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
395 B

<template>
<div ref="cron" :title="value">{{value}}</div>
</template>
<script>
export default {
props: ['value'],
mounted: function () {
$(this.$refs.cron).jqCron({
lang: 'cn',
default_value: this.value.substr(2),
no_reset_button: true
}).jqCronGetInstance().disable();
}
};
</script>