Skip to content

Commit 9bcd400

Browse files
committed
docs(migration): improve version consistency
1 parent 9280166 commit 9bcd400

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/content/1.getting-started/2.migration.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Migration
33
description: 'A comprehensive guide to migrate your application from Nuxt UI v2 to Nuxt UI v3.'
44
---
55

6-
Nuxt UI v3.0 is a new major version rebuilt from the ground up, introducing a modern architecture with significant performance improvements and an enhanced developer experience. This major release includes several breaking changes alongside powerful new features and capabilities:
6+
Nuxt UI v3 is a new major version rebuilt from the ground up, introducing a modern architecture with significant performance improvements and an enhanced developer experience. This major release includes several breaking changes alongside powerful new features and capabilities:
77

88
- **Tailwind CSS v4**: Migration from JavaScript to CSS-based configuration
99
- **Reka UI**: Replacing Headless UI as the underlying component library
@@ -545,17 +545,17 @@ import { ModalExampleComponent } from '#components'
545545
const validate = (state: any): FormError[] => {
546546
const errors = []
547547
if (!state.email) {
548-
errors.push({
549-
- path: 'email',
548+
errors.push({
549+
- path: 'email',
550550
+ name: 'email',
551-
message: 'Required'
551+
message: 'Required'
552552
})
553553
}
554554
if (!state.password) {
555-
errors.push({
556-
- path: 'password',
555+
errors.push({
556+
- path: 'password',
557557
+ name: 'password',
558-
message: 'Required'
558+
message: 'Required'
559559
})
560560
}
561561
return errors

0 commit comments

Comments
 (0)