feat: add number-to-string conversion in mValue watcher for api components
parent
9f649b9565
commit
07c741f124
|
@ -123,6 +123,15 @@ watch(
|
||||||
},
|
},
|
||||||
{ deep: true },
|
{ deep: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => mValue.value,
|
||||||
|
(newValue) => {
|
||||||
|
if (typeof newValue === 'number') {
|
||||||
|
mValue.value = `${newValue}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
|
@ -125,6 +125,15 @@ watch(
|
||||||
},
|
},
|
||||||
{ deep: true },
|
{ deep: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => mValue.value,
|
||||||
|
(newValue) => {
|
||||||
|
if (typeof newValue === 'number') {
|
||||||
|
mValue.value = `${newValue}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
|
@ -119,6 +119,15 @@ watch(
|
||||||
},
|
},
|
||||||
{ deep: true },
|
{ deep: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => mValue.value,
|
||||||
|
(newValue) => {
|
||||||
|
if (typeof newValue === 'number') {
|
||||||
|
mValue.value = `${newValue}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in New Issue