Skip to content

Commit ab6a5ae

Browse files
committed
docs: fix broken links
1 parent 98fed76 commit ab6a5ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/pages/guide/composition-api/getting-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ In the following example we have a component that accepts an `error` string prop
175175

176176
<DocTip>
177177

178-
The `state` object contains a lot of useful information about the field, it is fully typed so you can explore it with your IDE or visit the [API reference](/api/types#path-state) for more information.
178+
The `state` object contains a lot of useful information about the field, it is fully typed so you can explore it with your IDE or visit the [source reference](https://github.com/logaretm/vee-validate/blob/main/packages/vee-validate/src/types/forms.ts#L255-L258) for more information.
179179

180180
</DocTip>
181181

@@ -296,7 +296,7 @@ Or you could use any custom function.
296296

297297
<DocTip>
298298

299-
Both `zod` and `yup` are very good at defining schemas especially nested values so it is recommended that you use either. As an added bonus, you get full typescript support with either of them. You can refer to the [Typed schemas guide](/guide/typed-schemas) to learn more about how to maximize the type safety of your schemas.
299+
Both `zod` and `yup` are very good at defining schemas especially nested values so it is recommended that you use either. As an added bonus, you get full typescript support with either of them. You can refer to the [Typed schemas guide](/guide/composition-api/typed-schemas) to learn more about how to maximize the type safety of your schemas.
300300

301301
</DocTip>
302302

docs/src/pages/guide/composition-api/handling-forms.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ It's generally recommended that you provide the `initialValues`, this is because
212212

213213
<DocTip>
214214

215-
If you are using `zod` or `yup` with [Typed schemas](/guide/composition/typed-schema), you can define the initial values on the validation schema directly with `.default` instead of having to specify `initialValues`.
215+
If you are using `zod` or `yup` with [Typed schemas](/guide/composition-api/typed-schema), you can define the initial values on the validation schema directly with `.default` instead of having to specify `initialValues`.
216216

217217
</DocTip>
218218

0 commit comments

Comments
 (0)