Skip to content

Instantly share code, notes, and snippets.

@tuchk4
Created December 1, 2015 09:00
Show Gist options
  • Save tuchk4/12683667be66b562794c to your computer and use it in GitHub Desktop.
Save tuchk4/12683667be66b562794c to your computer and use it in GitHub Desktop.
Route - Valentjs vs AngularJS
angular.module('example').config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/home', {
controller: 'home',
template: '<div> {{ name }} </div>'
});
}]);
valent.route('home', '/home', {
template: '<div> {{ controller.name }} </div>'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment