PHP Classes

File: src/router/routes.js

Recommend this page to a friend!
  Packages of Robert Devenyi   Sibo Meal Planner   src/router/routes.js   Download  
File: src/router/routes.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Sibo Meal Planner
App to help treat the SIBO health condition
Author: By
Last change:
Date: 8 months ago
Size: 305 bytes
 

Contents

Class file image Download
const routes = [ { path: '/', component: () => import('layouts/MainLayout.vue'), children: [ { path: '', component: () => import('pages/IndexPage.vue') }, { path: 'recipes', name: 'recipes', component: () => import('pages/RecipePage.vue') }, ], }, ] export default routes