我已按照以下文档中的说明操作: https://www.primefaces.org/primeng/#/menubar
在我的模块文件中,我导入了正确的lib:
import {MenubarModule,MenuItem} from 'primeng/primeng';
然后在我的模板中我定义了:
<p-menubar [model]="items">
<button pButton label="Logout" icon="fa-sign-out"></button>
</p-menubar>
但是,该按钮不会在html结果中呈现。我在某个地方弄乱了吗?
最诚挚的问候。
imports: [
BrowserModule,
HttpModule,
DataTableModule,
SharedModule,
ButtonModule,
MenubarModule,
RouterModule.forRoot([
{
path: 'home',
component: HomeComponent
},
{
path: 'login',
component: LoginComponent
}, {
path: '',
redirectTo: '/login',
pathMatch: 'full'
},
])
],
答案 0 :(得分:1)
文档引用的是4.1 RC3版本,当时正在使用RC2: