我正在尝试在Angular项目中使用,在HTML文件中我有以下内容:
<div class="content-section introduction">
<div>
<span class="feature-title">Free Memory Space Monitoring</span>
</div>
</div>
<div>
<p-selectButton [options]="cities2" optionLabel="name"></p-selectButton>
<p>here</p>
</div>
<div>
<canvas id="myChart"></canvas>
</div>
我使用的是Angular 9.0.1和PrimeNG 9.0.0,已经安装并设置了所有内容,还在我的app.modules.ts中添加了import {SelectButtonModule} from 'primeng/selectbutton';
,还在其中添加了SelectButtonModule
导入时,图表运行良好,但是此SelectButton不起作用甚至无法显示。
我是新手,感谢您的帮助:)