mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
21 lines
478 B
TypeScript
21 lines
478 B
TypeScript
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'child-component',
|
|
template: `
|
|
Child<br />
|
|
Input text: {{ childText }} <br />
|
|
Output : <button (click)="onClickChild.emit($event)">Click here !</button> <br />
|
|
Private text: {{ childPrivateText }} <br />
|
|
`,
|
|
})
|
|
export default class ChildComponent {
|
|
@Input()
|
|
childText = '';
|
|
|
|
childPrivateText = '';
|
|
|
|
@Output()
|
|
onClickChild = new EventEmitter<any>();
|
|
}
|