dispatch:router

v0.0.8Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Router Build Status

##Usage

meteor add dispatch:router

Router.map({
  '/login': function () {
    // Use dispatch:viewport to display the login page
  }
});

Router.on('change', function (route) {
  analytics.page(route.substring(1));
});