ngx-bootstrap 不支持 tab 标签问题
我已经安装了,并执行了如下操作:
npm i ngx-bootstrap@2.0.0-rc.0 --save
import { TabsModule } from 'ngx-bootstrap'
imports: [TabsModule.forRoot(),
.angular-cli.json :
"styles": ["../node_modules/font-awesome/css/font-awesome.min.css",
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"../node_modules/c-cui-mst/styles.css","styles.scss"],
现在仍然提示不支持 tab 标签,为什么?
报错信息如下:
Uncaught Error: Template parse errors:
'tab' is not a known element:
1. If 'tab' is an Angular component, then verify that it is part of this module.
2. To allow any element add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("
<div class="tabs-container">
<tabset>
[ERROR ->]<tab heading="全部">
<div class="panel-body">
<div class="row">
"): ng:///AppModule/MallOrderComponent.html@23:10
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要将
TabsModule
放到app.module
的imports
数组里面,这样angular在编译的时候才会编译tab, 然后你的component才能识别tab.如果在懒加载的模块中使用,则必须在懒加载的模块中导入