Routes
window.routes.push({
});Last updated
The entry point for the Nectar app is index.html
The app shell inside which all other pages are loaded is /partials/app.html
The paths for loading pages inside the app shell are defined in /assets/custom/js/routes.js file.
You can define all your routes at the end of the file, inside:
window.routes.push({
});You should learn about Framework7 routes at
https://framework7.io/docs/routes.html
https://framework7.io/docs/view#router-api-methods-properties
Last updated