Skip to content

Commit

Permalink
remove the Readonly wrapper for the ComputedRef (#3)
Browse files Browse the repository at this point in the history
Co-authored-by: bcastlel <[email protected]>
  • Loading branch information
bcastlel and bcastlel authored Jan 27, 2024
1 parent be8a58c commit c4f3860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue-use-fixed-header/src/useFixedHeader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export function useFixedHeader(
options: Partial<UseFixedHeaderOptions> = {},
): {
styles: Readonly<CSS>
isLeave: Readonly<ComputedRef<boolean>>
isEnter: Readonly<ComputedRef<boolean>>
isLeave: ComputedRef<boolean>
isEnter: ComputedRef<boolean>
} {
// Config

Expand Down

0 comments on commit c4f3860

Please sign in to comment.