truly-ui
Version:
Web Components for Desktop Applications.
25 lines (18 loc) • 564 B
text/typescript
import { Component } from '@angular/core';
import * as json from './splitbuttondemo-dataproperties.json';
( {
selector: 'app-split-button',
templateUrl: './splitbuttondemo.component.html',
styleUrls: [ './splitbuttondemo.component.scss' ]
} )
export class SplitButtonDemo {
private dataTableProperties;
private dataTableProperties2;
constructor() {
this.dataTableProperties = json.dataProperties;
this.dataTableProperties2 = json.dataProperties2;
}
callBackDemo($event) {
console.log($event.srcElement.innerText);
}
}