This commit is contained in:
Taric Xin
2022-01-18 15:49:09 +08:00
parent 7775b39bc6
commit 9d1ba35333
28 changed files with 699 additions and 179 deletions

View File

@ -0,0 +1,16 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({
selector: 'st-widget-currency-chy',
template: ` {{ value | currency }} `,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class STCurrencyCHYWidget {
static readonly KEY = 'currency-chy';
value!: number;
constructor() {}
}