语义-ui 仅在编辑 custom.semantic.json 后有效,w/MeteorJS

Semantic-ui only worked AFTER editing custom.semantic.json, w/ MeteorJS

步骤:

meteor create semantic-ui 
cd semantic-ui 
meteor add semantic:ui  
meteor add flemay:less-autoprefixer 
meteor run

使用此语义-ui 脚本更新 semantic-ui.html

<template name="hello">
  <button>Click Me</button>
  <p>You've pressed the button {{counter}} times.</p>

    <div class="ui three buttons">
      <button class="ui active button">One</button>
      <button class="ui button">Two</button>
      <button class="ui button">Three</button>
    </div>

</template>

我没有看到语义 UI 样式。

创建新文件client/lib/custom.semantic.json不要编辑它。

Meteor 服务器重新启动后:浏览器中仍然没有语义UI。

如果我编辑 custom.semantic.json,即将 "accordion": true, 更改为: "accordion": false,...现在,一旦流星服务器启动,我就会看到语义 Ui 样式。

我按照你的代码进行了检查,只是想知道你是否注意到了

注意:如果您对默认值满意,则需要删除 .custom.semantic.json 以生成语义 UI。 (请参阅生成触发器)

我将 .custom.semantic.json 重命名为 custom.semantic.json 后,它起作用了。