UNPKG

aurelia-tabs

Version:

A dependency free tabs component for your Aurelia applications.

17 lines (12 loc) 312 B
import {inject} from 'aurelia-dependency-injection'; import {bindable, customElement} from 'aurelia-templating'; @customElement('tab-sections') @inject(Element) export class TabSections { private element: Element; constructor(element) { this.element = element; } attached() { } }