javascript – 如何在模板内部渲染部分

前端之家收集整理的这篇文章主要介绍了javascript – 如何在模板内部渲染部分前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用角度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

猜你在找的JavaScript相关文章