Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
roberts
2023-04-30 12:17:59 +02:00
5 changed files with 40 additions and 8 deletions

13
src/router/Muscle.js Normal file
View 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 },
]
};