3
我希望有人能爲我解決這個問題。我假設對此有一個簡單的答案。但如果它出現在互聯網上,我似乎無法找到它。請記住,我有一點經驗,所以我很抱歉,如果我失去了一些明顯的東西。Angular 2 @View with template vs @Component with template
我看到下面的實施例在那裏爲在角2.
//Example 1
@Component({
selector: 'my-app'
})
@View({
template : '<p></p>'
})
據我所知創建模板,上面的例子是相同的,因爲這。
// Example 2
@Component({
selector: 'my-app',
template: '<p></p>'
})
根據這一https://angular.io/docs/ts/latest/api/core/View-decorator.html這@Directive v/s @Component in angular2
那麼有沒有什麼好的理由來創建一個像第一個例子VS第二哪裏@View
似乎通過@Component
被隱式設置使用模板「模板」?
謝謝。我不知道那個..我會看看。 –