Migration Guide
Guide for migrating from vue-router to wouter-vue.
Key Differences
| vue-router | wouter-vue |
|---|---|
useRouter() | useLocation() |
useRoute() | useRoute(pattern) |
$route.params | useParams() |
<router-view> | <Route> |
<router-link> | <Link> |
| Route config array | Declarative <Route> components |
Step-by-Step Migration
1. Install wouter-vue
2. Replace Router
Before:
After:
3. Replace Navigation
Before:
After:
4. Replace Route Matching
Before:
After:
Common Patterns
See API Reference for full API documentation.