|
[app.service.ts]
import { Component, Injectable } from '@angular/core';
@Injectable()
// create the sepearate sevice for dialog
export class ShareRouting {
public dialogContent: string;
constructor() {
// setting the default value
this.dialogContent = '';
}
setData(data) {
this.dialogContent = data;
}
getData() {
return this.dialogContent;
}
}
|