我想从我的登录组件发送用户名到家庭组件...我怎么能这样做请告诉我一个简单的例子,显示从一个组件发送字符串到另一个组件我使用angular2 CLI和vs代码编辑器
答案 0 :(得分:0)
使用 @Input
从'@ angular / core'导入{Component,Input};
@Component({ 选择:“反”, 输入:['数字'] }) 导出类CounterComponent {
@Input()
count: number = 0;
}
@Component({ 选择器:'反兄弟', 模板:'' }) 出口类CounterSibling {
@Output()
count: number = 0;
} 在兄弟姐妹中使用: