1
我如何在angular 1中實現類似元素指令的組件?Nativescript angular 2組件如何?
這是我的代碼,但它不工作:
import {Component} from "@angular/core";
@Component({
moduleId: "TestComponent",
selector: "TestComponent",
template: '<Label text="TEST COMPONENT" textWrap="true"></Label>'
})
export class TestComponentComponent {
constructor() { }
}
@Component({
selector: "my-app",
template: `
<StackLayout>
<Label text="TEST"></Label>
<TestComponent></TestComponent>
</StackLayout>
`
})
export class AppComponent {
constructor() { }
}
這不是爲我工作。 –
通過將組件添加到@NgModule中的「聲明」來實現它的工作 –