如何将Addepar ember-widgets添加到EmberCli项目?

时间:2015-04-11 21:33:32

标签: ember.js bower emblem.js

我想在我的项目中添加Addepar ember-widgets。

我已使用bower install ember-widgets --save安装了它。

在安装过程中,它要求我选择jqueryemberbootstrap的版本,说它无法找到合适的版本。

当我尝试使用页面中的示例时

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

我安装错误了,或者我把它错误地翻译成了徽章,或其他什么......

0 个答案:

没有答案