我正在尝试使用 Angular 7 和 Nebular 创建一个 Webapp。
因此我使用原理图来安装 Nebular:
ng add @nebular/theme
所以我的 node_modules 中确实有 nebular-icons 并作为依赖项包含在我的 package.json 中:
"dependencies": {
...
"nebular-icons": "^1.1.0",
...
},
我还尝试将 nebular-icons 添加到 angular.json 中的样式中:
"styles": [
"src/styles.scss",
"node_modules/nebular-icons/scss/nebular-icons.scss"
],
现在,如果我尝试使用图标,它仍然不会显示。例如:
<nb-layout-header subheader>
<nb-actions>
<nb-action icon="nb-home"></nb-action>
<nb-action icon="nb-search"></nb-action>
<nb-action icon="nb-edit"></nb-action>
</nb-actions>
</nb-layout-header>
不幸的是,图标不显示。我只能看到分隔 nb-actions 图标的行(“|”),但看不到图标本身。
谢谢你的帮助!