This commit is contained in:
insanity
2018-06-14 16:42:04 +09:00
parent cd0745c362
commit bb38d922e4
10 changed files with 77 additions and 290 deletions

View File

@@ -7,7 +7,7 @@ import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
export class KeyValueComponent implements OnInit {
@Input() key: string;
@Input() value: string;
@Input() value: any;
@Input() clickable = false;
@Output() click = new EventEmitter<string>();