App.router.back go back a certain amount of levels back?

Hi, what do you mean that does not support dynamic pages? I use template pages <template> and all my content there is dynamic and works without any issues!

can you elaborate more?

here my route.js

import HomePage from '../pages/home.f7.html';
import Stores from '../pages/stores.f7.html';

import store from './store.js';

var routes = [
  {
    path: '/',
    component: HomePage,
  },

  {
    path: '/stores/',
    async: function ({ app, to, resolve }) {

      resolve({
        component: Stores,
      });

    }
  },

  ...