import { Component } from '@angular/core'; @Component({ selector: 'cm-tabs-doc-7', templateUrl: 'tabs-doc-7.component.html', }) export class TabsDoc7Component { _position = 'top'; tabs = [ { index: 1 }, { index: 2 }, { index: 3 } ]; options = [ { value: 'top', label: 'top' }, { value: 'left', label: 'left' }, { value: 'right', label: 'right' }, { value: 'bottom', label: 'bottom' } ]; }