有没有办法在没有webpack的Angular2 templateUrl中使用Jade?
@Component({
selector: 'my-app',
templateUrl: 'my-app.component.jade'
})
MY-app.component.jade
ul
li One
li Two
li Three
答案 0 :(得分:0)
当然,在构建dev中从dist服务html文件在正确的位置链接什么组件。在构建过程中,在简单任务中使用gulp-jade,例如:
gulp.task('html:build', () =>
gulp.src(PATH.src.jade)
.pipe(jade())
.pipe(gulp.dest(PATH.dest.app.component))
);
使用GitHub上的Jade模板查看我的复杂性Angular2样板项目 - > https://github.com/NN77/ng2-complexity/blob/master/gulpfile.ts