我正在开发angular2项目,我正在实施ngx-treeview, 我的问题是,在实施ngx-treeview之后,扩展箭头不会出现。 有什么帮助吗?
答案 0 :(得分:0)
首先,您需要安装Font Awesome 4才能获得箭头css。
您需要先安装它:
npm install font-awesome --save
然后将其添加到 angular-cli.json
中"apps": [
{
"root": "src",
"outDir": "dist",
....
"styles": [
"styles.css",
"../node_modules/bootstrap/dist/css/bootstrap.css",
"../node_modules/font-awesome/css/font-awesome.css"
],
...
}
]
],
不要忘记在 ng服务之前运行 ng build