我有这样的代码:
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{name}}</h2>
</div>
`,
})
@Component({
selector: 'my-app1',
template: `
<div>
<h2>Bye {{name}}</h2>
</div>
`,
})
export class App {
name:string;
constructor() {
this.name = `react! v${VERSION.full}`
}
}
我不明白在应用程序中使用这两个selectors
时会发生什么。哪些组件从类中获取数据以及如何获取数据。