给出角度分量:
(function () {
angular.module("components", [])
.component("hello", {
controller: helloController,
controllerAs: "vm",
templateUrl: "hello.html"
});
function helloController() {
var vm = this;
console.log('Hello World.');
}
})();
如何替换templateUrl:" hello.html"用模板:"你好"在npm构建中。
我看到了很多关于angular templatecache的gulp,webpack和grunt示例,但是我没有看到只使用npm脚本的方法。
我让其余的构建过程使用npm脚本,我只是找不到使用节点命令执行此操作的npm模块。