Skip to content

Commit

Permalink
docs: fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
YannicEl committed Aug 10, 2023
1 parent aa98e04 commit ee376f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/docs/core-concepts/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ outline: deep

## How to use a plugin?

Plugins can be added to a form in one of two ways. The easiest option is to pass the plugin to the [`useForm()`](../api#useForm) function.
Plugins can be added to a form in one of two ways. The easiest option is to pass the plugin to the [`useForm()`](../api#useform) function.

```ts
import { localStoragePlugin, useForm } from '@vuetils/form';
Expand All @@ -32,7 +32,7 @@ const form = useForm(
);
```

The second option is to dynamically add a plugin with the [`addPlugin()`](../api#addPlugin) function.
The second option is to dynamically add a plugin with the [`addPlugin()`](../api#addplugin) function.

```ts
import { localStoragePlugin, useForm } from '@vuetils/form';
Expand Down

0 comments on commit ee376f9

Please sign in to comment.