How to use "Template.myTmpl.helpers()"in Meteor 1.3 beta?

I would like to use Template in Meteor 1.3

Template.myTmpl.helpers();

I tried

import {Template} from "meteor/blaze-html-templates";
...........

Still don’t work.

1 Like

This seems to work:

import { Template } from 'meteor/templating';

I pinched it from here (todos re-written for 1.3):

Thanks, It work fine :smile:

1 Like