resovled build error and added tilebar navigation

This commit is contained in:
roberts
2023-04-30 01:27:13 +02:00
parent d55a2126b4
commit fcc8bb95f7

13
src/stores/muscles.js Normal file
View File

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