沈斌
2018-07-10 fec630978ad9b1ce5caff7dbc74e7d10d43a0970
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Component } from '@angular/core';
import { ColorService } from '../color.service';
import { copy } from '@delon/util';
import { NzMessageService } from 'ng-zorro-antd';
 
@Component({
  selector: 'app-colors',
  templateUrl: './colors.component.html',
  styleUrls: ['./colors.component.less'],
})
export class ColorsComponent {
  nums = Array(10)
    .fill(1)
    .map((v, i) => v + i);
  constructor(public c: ColorService, private msg: NzMessageService) {}
 
  onCopy(str: string) {
    copy(str).then(() => this.msg.success(`Copied Success!`));
  }
}