Guest User

Untitled

a guest
Dec 11th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import EmberRouter from '@ember/routing/router';
  2. import config from './config/environment';
  3.  
  4. const Router = EmberRouter.extend({
  5. location: 'none',
  6. rootURL: config.rootURL
  7. });
  8.  
  9. Router.map(function() {
  10.  
  11. this.route('foo', { path: '/' });
  12. });
  13.  
  14. export default Router;
Add Comment
Please, Sign In to add comment