0
我一直在努力執行下面的代碼:Angular2:無法綁定到「模式」,因爲它不是一個已知的財產「對步驟」
states.component.html
<p-steps [model]="items"></p-steps>
import { Component, OnInit } from '@angular/core';
import { StepsModule, MenuItem } from 'primeng/primeng';
import { NgModule } from '@angular/core';
@Component({
selector: 'jhi-states',
templateUrl: './states.component.html',
styles: []
})
states.component.ts
export class StatesComponent implements OnInit {
items: MenuItem[];
constructor() { }
ngOnInit() {
this.items = [
{label: 'Step 1'},
{label: 'Step 2'},
{label: 'Step 3'}
];
}
}
連接到網站,我得到以下結果時:
- 無法綁定到'model',因爲它不是'p-steps'的已知屬性。
任何想法?
'p-steps'組件是否具有'@Input()model'屬性? –
p-steps沒有任何@Input模型屬性。 https://www.primefaces.org/primeng/#/steps –