From 56e64af9da4e492e1e6864fb6c489c389b174d3f Mon Sep 17 00:00:00 2001 From: wangzenghua <1048523306@qq.com> Date: Fri, 25 Apr 2025 07:34:55 +0100 Subject: [PATCH] feat:edit --- src/views/inputs/index.vue | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/src/views/inputs/index.vue b/src/views/inputs/index.vue index 2ffb161..3ad05bd 100644 --- a/src/views/inputs/index.vue +++ b/src/views/inputs/index.vue @@ -35,9 +35,29 @@
- +
@@ -60,6 +80,15 @@ import inputsFour from './components/inputsFour.vue'; import inputsFive from './components/inputsFive.vue'; import inputsSix from './components/inputsSix.vue'; import inputsMap from './components/inputsMap.vue'; +import { nextTick, ref } from 'vue'; + +const fiveRef = ref(null); +const handleCommand = (data) => { + console.info('data=', data); + nextTick(() => { + fiveRef.value && fiveRef.value.refresData(); + }); +};