我正在使用Meteor套餐:
accounts-ui
accounts-password
accounts-facebook
我在我的视图中实现了Meteor帐户,如下所示:
<meteor-include src="loginButtons"></meteor-include>
现在,登录&#39;链接向右对齐所以我希望它向左下拉,但它在右侧下降,因此,它不适合浏览器。
[!1]
我想要更改它,使其向左下方,因此,它将在页面上。另外,我使用AngularJS w / Meteor
答案 0 :(得分:1)
如果在常规.html
文件中,使用空格键语法很容易:
{{> loginButtons align="left"}}
如果在.ng.html
文件中,建议您使用angular-meteor关注api:使用blaze-template
。
meteor add urigo:angular-blaze-template
.html
文件中,创建一个新的Blaze模板:
<template name="loginButtonsWithParameters">
{{> loginButtons align="left"}}
</template>
.ng.html
文件中,添加:<blaze-template name="loginButtonsWithParameters"></blaze-template>