Skip to content

Commit c4f3860

Browse files
authored
remove the Readonly wrapper for the ComputedRef (#3)
Co-authored-by: bcastlel <[email protected]>
1 parent be8a58c commit c4f3860

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vue-use-fixed-header/src/useFixedHeader.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export function useFixedHeader(
2525
options: Partial<UseFixedHeaderOptions> = {},
2626
): {
2727
styles: Readonly<CSS>
28-
isLeave: Readonly<ComputedRef<boolean>>
29-
isEnter: Readonly<ComputedRef<boolean>>
28+
isLeave: ComputedRef<boolean>
29+
isEnter: ComputedRef<boolean>
3030
} {
3131
// Config
3232

0 commit comments

Comments
 (0)