Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. port Backbone from 'backbone';
  2. import $ from 'jquery';
  3.  
  4. + import routes from './routes';
  5.  
  6. export default Backbone.Router.extend({
  7. - routes: {
  8. - 'about': 'about',
  9. - },
  10. + routes,
  11.  
  12. about() {
  13. $('#app').html(`You're viewing about page. It was loaded in async way`);
  14. }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement