Skip to content
emit.service.ts 339 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import {Injectable, EventEmitter, OnInit} from "@angular/core";

/**
 * 全局监听事件
 */

@Injectable()
export class EmitService implements OnInit {
    public eventEmit: any;

    //全局的监听事件
    constructor() {
        // 定义发射事件
        this.eventEmit = new EventEmitter();
    }

    ngOnInit() {

    }
}