Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
13
src/router/Muscle.js
Normal file
13
src/router/Muscle.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Legs, Back, Chest, Shoulder, Triceps, Biceps } from '@/views/muscles';
|
||||
|
||||
export default {
|
||||
path: '/muscles',
|
||||
children: [
|
||||
{ path: 'legs', component: Legs },
|
||||
{ path: 'back', component: Back },
|
||||
{ path: 'chest', component: Chest },
|
||||
{ path: 'shoulder', component: Shoulder },
|
||||
{ path: 'triceps', component: Triceps },
|
||||
{ path: 'bicepts', component: Biceps },
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user