我想在我的项目中添加Addepar ember-widgets。
我已使用bower install ember-widgets --save
安装了它。
在安装过程中,它要求我选择jquery
,ember
和bootstrap
的版本,说它无法找到合适的版本。
当我尝试使用页面中的示例时
handelbars:
{{#carousel-component}}
{{#carousel-item class="active"}}
<img src="/img/bootstrap-mdo-sfmoma-01.jpg" alt="">
{{/carousel-item}}
{{#carousel-item}}
<img src="/img/bootstrap-mdo-sfmoma-02.jpg" alt="">
{{/carousel-item}}
{{#carousel-item}}
<img src="/img/bootstrap-mdo-sfmoma-03.jpg" alt="">
{{/carousel-item}}
{{/carousel-component}}
emblem:
carousel-component
carousel-item.active
img alt='image1' src='/images/hires03.jpg'
carousel-item
img alt='image1' src='/images/hires03.jpg'
carousel-item
img alt='image1' src='/images/hires03.jpg'
我得到Assertion Failed: A helper named 'carousel-component' could not be found
我安装错误了,或者我把它错误地翻译成了徽章,或其他什么......