all
This commit is contained in:
@@ -100,11 +100,14 @@ const _sfc_main = defineComponent({
|
||||
emit("change", tempValue.value);
|
||||
}
|
||||
});
|
||||
watch(() => props.modelValue, (val) => {
|
||||
if (val !== num.value) {
|
||||
num.value = props.modelValue;
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
(val) => {
|
||||
if (val !== num.value) {
|
||||
num.value = props.modelValue;
|
||||
}
|
||||
}
|
||||
});
|
||||
);
|
||||
let timer = 0;
|
||||
const tempValue = ref(0);
|
||||
const minControl = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user