angularjs 七

前端之家收集整理的这篇文章主要介绍了angularjs 七前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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
}

原文链接:https://www.f2er.com/angularjs/148892.html

猜你在找的Angularjs相关文章