admin管理员组文章数量:1345128
I am trying to create a popover in the Javascript of my Angular 12 project. I am using Boostrap v5.0.1
. I can't seem to get rid of a name error when I am trying to create the popover:
var exampleEl = document.getElementById(item.name + index);
var tooltip = new bootstrap.Popover(exampleEl, {
container: 'body',
animation: true
});
Typescript is telling me "Can't find name bootstrap"
.
I have added bootrap.js to my angular.json file:
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
]
According to the docs, popper.js is included in the bundle file. I am not using jQuery and do not want to include it. I have not seen another post with a similar issue so I must be just overlooking something small. Any ideas?
I am trying to create a popover in the Javascript of my Angular 12 project. I am using Boostrap v5.0.1
. I can't seem to get rid of a name error when I am trying to create the popover:
var exampleEl = document.getElementById(item.name + index);
var tooltip = new bootstrap.Popover(exampleEl, {
container: 'body',
animation: true
});
Typescript is telling me "Can't find name bootstrap"
.
I have added bootrap.js to my angular.json file:
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
]
According to the docs, popper.js is included in the bundle file. I am not using jQuery and do not want to include it. I have not seen another post with a similar issue so I must be just overlooking something small. Any ideas?
Share Improve this question asked Jul 1, 2021 at 20:39 bschmittybschmitty 1,2183 gold badges21 silver badges49 bronze badges1 Answer
Reset to default 12Posting this declaration at the top of the file worked:
declare var bootstrap: any;
本文标签: javascriptBootstrap 5 Popover ErrorCannot find name 39bootstrap39Stack Overflow
版权声明:本文标题:javascript - Bootstrap 5 Popover Error - Cannot find name 'bootstrap' - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743767102a2535422.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论