import {Component, ElementRef, Input, OnInit} from '@angular/core'; @Component({ selector: 'sitePagePanel', templateUrl: './template.html', styleUrls: ['./style.less'] }) export default class SitePagePanel { @Input() label: string; constructor() { } }