aslagle:reactive-table で Meteor の最新バージョンを使用します。
Iron Router では、データ コンテキストをテンプレートに渡すことができます。
ルーター.js:
Router.route('/dates', {
name: 'dates',
data: {
header_title: 'Dates & Times'
}
});
日付.html:
<div class="bt-h1">{{header_title}}</div>
ReactiveTables で同様のことを行うことはできますか。つまり、router.js から「変数」を渡すことはできますか?
{{> reactiveTable collection=tests settings=variable}}