We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 427c2d5 + c2f9804 commit 6764f86Copy full SHA for 6764f86
src/components/Crontab/src/Crontab.vue
@@ -503,9 +503,13 @@ const submit = () => {
503
emit('update:modelValue', defaultValue.value)
504
dialogVisible.value = false
505
}
506
+
507
+const inputChange = () => {
508
+ emit('update:modelValue', defaultValue.value)
509
+}
510
</script>
511
<template>
- <el-input v-model="defaultValue" class="input-with-select" v-bind="$attrs">
512
+ <el-input v-model="defaultValue" class="input-with-select" v-bind="$attrs" @input="inputChange">
513
<template #append>
514
<el-select v-model="select" placeholder="生成器" style="width: 115px">
515
<el-option label="每分钟" value="0 * * * * ?" />
0 commit comments