我想创建一个实现 Meteoric 包的 Meteor 应用程序,使我能够使用 Ionic UI 功能。离开这个:https ://github.com/meteoric/meteor-ionic/blob/master/GUIDE.md我试图简单地让它使用离子样式,但它不起作用。不过,它 Meteoric 确实可以正确呈现 HTML。
路由器.js
Router.configure({
layoutTemplate: 'layout'
});
Router.route('/', {
name: 'timeLists'
});
布局.html
<template name="layout">
{{#ionBody}}
{{> ionNavBar}}
{{#ionNavView}}
{{> yield}}
{{/ionNavView}}
{{/ionBody}}
</template>
时间列表.html
<template name="timeLists">
{{#ionContent}}
Hello.
{{/ionContent}}
</template>
我在这里想念什么?谢谢!