我练习角度2,我真的很新。 我构建了2个组件 - 父组件及其子组件。 当我试图将一些参数从父组件传递给它的子组件时,我得到“错误:输入未定义'”。有人可以帮助我吗,因为我无法看到我做错了什么。
export class SquadComponent{
@Input() selectedteam;
}
答案 0 :(得分:6)
在使用之前只需导入Input
import { Component, Input } from 'angular2/core'
工作示例http://plnkr.co/edit/ZXI8FwfYvrcAkTxtUPNy?p=preview
import { Component, Input } from '@angular/core'