resovled build error and added tilebar navigation
This commit is contained in:
13
src/stores/muscles.js
Normal file
13
src/stores/muscles.js
Normal 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 },
|
||||||
|
]
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user