19 lines
386 B
JavaScript
19 lines
386 B
JavaScript
/* jshint -W097 */ // don't warn about "use strict"
|
|
"use strict";
|
|
/*Ne fonctionne pas */
|
|
const router = new VueRouter({
|
|
routes: [
|
|
{ path: '/navContact', component:NavContact ,
|
|
children: [
|
|
{
|
|
path: '/profile',
|
|
component: Profile
|
|
},
|
|
{
|
|
path: '/contactsList',
|
|
component: ContactsList
|
|
}
|
|
]
|
|
}
|
|
]
|
|
})
|