我正在尝试使用Bootstrap" collapse.js"使用按钮单击工作。它会隐藏但不会在按钮点击时显示。这是在brocfile.js:
var app = new EmberApp({
'ember-cli-bootstrap-sass': {
'importBootstrapJS': ['affix','collapse']
}
});
这就是我在template.hbs中所拥有的:
<a class="btn btn-primary" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
Link with href
</a>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
Button with data-target
</button>
<div class="collapse" id="collapseExample">
<div class="well">
Some text here. Some text here. Some text here.
</div>
</div>
有人可以帮忙吗?我错过了什么。我正在使用ember-cli版本2.5和ember-cli-bootstrap-sass。
感谢帮助。