Added custom tag for <test-import-module>

This commit is contained in:
Patrick Steele-Idem 2016-02-03 11:19:56 -07:00
parent 07e513c6ff
commit fd2b445544

View File

@ -0,0 +1,4 @@
module.exports = function(el, codegen) {
var fooVar = codegen.importModule('foo', './foo');
return codegen.builder.functionCall(fooVar, []);
};