Skip to content

Commit c75a656

Browse files
negezorrunkids
authored andcommitted
fix(docs): add missing execute function in example
1 parent e33cc6f commit c75a656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ createApp({
113113
const fetcher = params => axios.get('/user/', {params})
114114
const router = useRouter()
115115

116-
const { conditions, data, loading, error } = useConditionWatcher(
116+
const { conditions, data, loading, execute, error } = useConditionWatcher(
117117
{
118118
fetcher,
119119
conditions: {
@@ -124,7 +124,7 @@ createApp({
124124
}
125125
}
126126
)
127-
return { conditions, data, loading, error }
127+
return { conditions, data, loading, execute, error }
128128
},
129129
})
130130
.use(router)

0 commit comments

Comments
 (0)