custom.js.es6 274 B

12345678910111213
  1. import Router from 'wizard/router';
  2. export default {
  3. name: 'custom-routes',
  4. initialize() {
  5. Router.map(function() {
  6. this.route('custom', { path: '/custom/:name' }, function() {
  7. this.route('step', { path: '/steps/:step_id' });
  8. });
  9. });
  10. }
  11. };