REVIEW 定时任务(表单)

This commit is contained in:
YunaiV
2023-04-01 11:33:50 +08:00
parent f8878f7a76
commit eace25d3a2
3 changed files with 19 additions and 60 deletions

View File

@ -6,7 +6,10 @@ interface shortcutsType {
value: string
}
const props = defineProps({
modelValue: { type: String, default: '* * * * * ?' },
modelValue: {
type: String,
default: '* * * * * ?'
},
shortcuts: { type: Array as PropType<shortcutsType[]>, default: () => [] }
})
const defaultValue = ref('')