Skip to content

Commit

Permalink
Fix dead links
Browse files Browse the repository at this point in the history
  • Loading branch information
msfstef committed Aug 14, 2024
1 parent c03ad9b commit 199e85a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/framework-hooks/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ outline: [2, 3]

# Vue

To aid integration of PGlite into a [Vue](https://vuejs.org/) project we have a `providePGlite` with a corresponding `injectPGlite` and hooks for the [live query](./live-queries.md) plugin.
To aid integration of PGlite into a [Vue](https://vuejs.org/) project we have a `providePGlite` with a corresponding `injectPGlite` and hooks for the [live query](../live-queries.md) plugin.

### providePGlite

Expand Down Expand Up @@ -69,7 +69,7 @@ export { providePGlite, injectPGlite }

### useLiveQuery

The `useLiveQuery` hook enables you to reactively receive updates to the results of a live query change. It wraps the [`.live.query()`](./live-queries.md#livequery) API.
The `useLiveQuery` hook enables you to reactively receive updates to the results of a live query change. It wraps the [`.live.query()`](../live-queries.md#livequery) API.

It has the interface:

Expand Down Expand Up @@ -109,7 +109,7 @@ const items = useLiveQuery(`

### useLiveIncrementalQuery

The `useLiveIncrementalQuery` hook enables you to reactively receive updates whenever the results of a live query change. It wraps the [`.live.incrementalQuery()`](./live-queries.md#liveincrementalquery) API, which provides a way to efficiently diff the query results in Postgres.
The `useLiveIncrementalQuery` hook enables you to reactively receive updates whenever the results of a live query change. It wraps the [`.live.incrementalQuery()`](../live-queries.md#liveincrementalquery) API, which provides a way to efficiently diff the query results in Postgres.

It has the interface:

Expand Down

0 comments on commit 199e85a

Please sign in to comment.