我注意到一些非常奇怪的东西(而且很烦人):只要流星模板中有变量,就会重写类标记。
使用默认meteor应用程序的示例,仅修改“hello”模板:
<template name="hello">
<button class="middle aligned center aligned">Click Me {{counter}}</button>
<button class="middle aligned center aligned">Click Me</button>
<p>You've pressed the button {{counter}} times.</p>
</template>
你会注意到在“class”标签中,有两次“对齐”,在使用semantic-ui时非常有用(取自其中一个示例:http://semantic-ui.com/examples/login.html)
当页面加载时,如果你转到开发人员工具,你会看到:
<body>
<h1>Welcome to Meteor!</h1>
<button class="middle aligned center">Click Me 0</button>
<button class="middle aligned center aligned">Click Me</button>
<p>You've pressed the button 0 times.</p>
</body>
其中一个“对齐”标签已经消失。
所以我的问题是:是否有可能告诉meteor不修改类标签?
谢谢
答案 0 :(得分:0)
Meteor删除了糟糕的css声明。第二个对齐标记是多余的,您应该删除它。如果中间对齐与居中对齐不同,那么您应该有两个不同的类,例如:中间对齐和居中对齐< / em>的