2

我想让我的用户在我的 Meteor/Ionic 应用程序中登录/注册。我认为使用简单的 {{> loginButtons}} 会很容易,但它Uncaught Error: No such template: loginButtons在控制台中给了我一个错误。我的代码是

<div class="bar bar-footer">
<button class="button button-clear">{{> loginButtons}}</button>
<div class="title">Start using!</div>
<button class="button button-clear">{{> loginButtons}}</button>

当然,我已经安装了所有必需的软件包(例如meteoric:ionic通过社交网络进行身份验证的软件包)。那么我怎么能做这个功能(我对所有这些东西有点陌生)?任何帮助将不胜感激,谢谢。

4

1 回答 1

5

在一些帮助下,我弄清楚了问题所在。我忘记添加accounts-ui包。在此之后,一切都很好。

于 2015-07-19T14:16:35.483 回答