Commit 7743b759b0f31161935cca8f36b252cfc788c2dd

Authored by fengtao
1 parent 2658f3c4

fix:数据流转 移除部分代码

... ... @@ -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();
... ...