Fix: Layout #1

Open
Flycro wants to merge 10 commits from fix_layout into main
Showing only changes of commit 93bd8267cc - Show all commits

View File

@@ -1,15 +1,13 @@
import { Legs, Back, Chest, Shoulder, Triceps, Biceps } from '@/views/muscles';
// import Tilebar from '@/views/layouts';
import {Back, Biceps, Chest, Legs, Shoulder, Triceps } from "../views/muscles/Index.js";
export default {
path: '/muscles',
// component: Tilebar,
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 },
{ path: 'biceps', component: Biceps },
]
};