Skip to content

Commit

Permalink
test: fix incorrect default value (#4934)
Browse files Browse the repository at this point in the history
  • Loading branch information
jh-leong authored Oct 21, 2024
1 parent 04a9f0a commit b17ef78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const bar = defineProp<string>('bar', {
});
const baz = defineProp<string | number>('baz', {
required: true,
default: () => [1, 2, 3],
default: () => 1,
});
defineProp<Qux>('qux')
defineProp<boolean>('quux', { default: true })
Expand Down

0 comments on commit b17ef78

Please sign in to comment.