我在main.js中添加插件:
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-bootstrap-datepicker');
在我的foo.html中我使用以下代码:
<bootstrap-datepicker value.bind="'mm-dd-yyyy'" dp-options.bind="dpOptions" changedate.delegate="dateChanged($event)"></bootstrap-datepicker>
我也使用骨架导航-esnext骨架。我不知道自己做错了什么。