Skip to content

Commit

Permalink
fix(playground): use toObject
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Nov 15, 2024
1 parent 8d11e6d commit e9cc592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const { handleSubmit, values } = useForm<
>();
const onSubmit = handleSubmit(data => {
console.log(data.toJSON());
console.log(data.toObject());
});
</script>

Expand Down

0 comments on commit e9cc592

Please sign in to comment.