The application is simple, to build a color picker: When click the rect box, it will check the color value below and title color will also change. color-picker.ts: import {Component, Output, EventEmitter, Input} from "@angular/core"; import {RED…
// 写法一: 1 @Components({ 2 ...., 3 inputs:['init'], 4 outputs:['finish'] 5 }) 6 export class xxx(){ 7 okEvent: EventEmitter<any> = new EventEmitter(); 8 9 ok(){ 10 // this should match the type define in EventEmitter 11 this.okEvent.emit('the value w…
CentOS这两天服务器出了问题了,提示如下: unexpected inconsistency;RUN fsck MANUALLY An error occurred during the filesystem check Propping you to shell the system will reboot when you leave the shell Give root password for mantennance 从网上找了一些教程,立马就解决了,过程如下: 按照系统提示,输入…