Skip to content

Instantly share code, notes, and snippets.

@bl4de
Created October 24, 2017 09:52
Show Gist options
  • Save bl4de/d4fcb49e941845757bc51e56b1c3e997 to your computer and use it in GitHub Desktop.
Save bl4de/d4fcb49e941845757bc51e56b1c3e997 to your computer and use it in GitHub Desktop.
breadcrumbComponent.js
'use strict';
angular.module('gbreadcrumb-component', [])
.component('breadcrumb', {
restrict: 'E',
bindings: {
path: '<',
active: '<'
},
controller: class breadcrumbCtrl {
constructor() {}
$onInit() {
}
},
template: `
<ol class="breadcrumb">
<li><a href="#!home">Home</a></li>
<li>${$ctrl.path}</li>
<li class="active">${$ctrl.active}</li>
</ol>
`
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment