您的位置:首页 > Web前端 > AngularJS

angularjs2 七

2016-09-08 17:12 169 查看
import {Component} from 'angular2/core';

/**
DatePipe          日期格式
UpperCasePipe   全部大写格式
LowerCasePipe  全部小写格式
CurrencyPipe     货币格式
PercentPipe  百分比格式
*/

@Component({
selector: 'appTest',
/*template: `<p>The hero's birthday is {{ birthday | date }}</p>`*/
template: `<p>The hero's birthday is {{ birthday | date:"MM/dd/yy" }}</p>`
})

export class App {
birthday = new Date(1988,3,15); // April 15, 1988
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: