我正在使用角度2作为项目,我想在模板内部渲染部分而不创建组件.那可能吗?
import {Component} from 'angular2/core';
import {RouteConfig,ROUTER_DIRECTIVES} from 'angular2/router';
@Component({
selector: 'ng2-showroom-app',providers: [],templateUrl: 'app/views/ng2-showroom-template.html',directives: [ROUTER_DIRECTIVES],pipes: []
})
@RouteConfig([
])
export class Ng2Showroom {
}
NG2-展厅模板
原文链接:https://www.f2er.com/js/428986.html