File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ const router = new VueRouter({
58
58
{
59
59
// `UserProfile` va être rendu à l'intérieur du `<router-view>` de `User`
60
60
// quand `/utilisateur/:id/profil` concorde
61
- path: ' profile ' ,
61
+ path: ' profil ' ,
62
62
component: UserProfile
63
63
},
64
64
{
65
65
// `UserPosts` va être rendu à l'intérieur du `<router-view>` de `User`
66
66
// quand `/utilisateur/:id/billets` concorde
67
- path: ' posts ' ,
67
+ path: ' billets ' ,
68
68
component: UserPosts
69
69
}
70
70
]
@@ -85,7 +85,7 @@ const router = new VueRouter({
85
85
{
86
86
path: ' /utilisateur/:id' , component: User,
87
87
children: [
88
- // `UserProfile ` va être rendu à l'intérieur du `<router-view>` de `User`
88
+ // `UserHome ` va être rendu à l'intérieur du `<router-view>` de `User`
89
89
// quand `/utilisateur/:id` concorde
90
90
{ path: ' ' , component: UserHome },
91
91
You can’t perform that action at this time.
0 commit comments