fix: the default value of numberSlider component

This commit is contained in:
IchliebedichZhu 2024-03-21 14:11:06 +00:00
parent fe31395673
commit 8a4431a0f4

View File

@ -49,7 +49,7 @@ const props = withDefaults(defineProps<TProps>(), {
})
const emit = defineEmits<TEmits>()
const innerValue = ref<number>(1)
const innerValue = ref<number>(props.minValue)
watch(
() => innerValue.value,