chore(docs,deps): update deps

This commit is contained in:
braks
2024-01-29 21:56:44 +01:00
committed by Braks
parent 64a2091ddb
commit a79d100b25
4 changed files with 333 additions and 428 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ const emit = defineEmits<{ (event: 'change', data: { color: Colors; val: number
const currentColor = toRef(props.data, 'color', 'red')
function onChange(e: InputEvent) {
return emit('change', { color: currentColor.value, val: parseInt((e.target as HTMLInputElement).value) })
return emit('change', { color: currentColor.value, val: Number.parseInt((e.target as HTMLInputElement).value) })
}
</script>