Showing
1 changed file
with
1 additions
and
7 deletions
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 | </div> |
27 | 27 | </template> |
28 | 28 | <script lang="ts"> |
29 | - import { defineComponent, ref, reactive, nextTick, watch } from 'vue'; | |
29 | + import { defineComponent, ref, reactive, nextTick } from 'vue'; | |
30 | 30 | import { BasicForm, useForm } from '/@/components/Form'; |
31 | 31 | import { modeKafkaForm, modeKafkaInseretKeyAndValueForm } from '../config'; |
32 | 32 | import { Alert, Divider, Descriptions } from 'ant-design-vue'; |
... | ... | @@ -113,12 +113,6 @@ |
113 | 113 | const tempGetKeyAndVal = async () => { |
114 | 114 | temp.value = await validateKeyAndValue(); |
115 | 115 | }; |
116 | - watch( | |
117 | - () => temp.value, | |
118 | - (n) => { | |
119 | - console.log(n); | |
120 | - } | |
121 | - ); | |
122 | 116 | |
123 | 117 | const getDefaultValue = async () => { |
124 | 118 | await tempGetKeyAndVal(); | ... | ... |