GITLAB

Arsisakarn Srilatanart / ng2-test-modal

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • ng2-test-modal
  • src
  • app
  • dummy
  • dummy.component.ts
  • 522b64d0   ทำให้ parent component (wizard-base) เปลี่ยนข้อมูลตาม child component + reload p… ... Browse Code »
    …arent เมื่อคลิกปุ่ม close (x)
    Arsisakarn Srilatanart
    2017-05-18 15:42:35 +0700  
dummy.component.ts 298 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-dummy',
  templateUrl: './dummy.component.html',
  styleUrls: ['./dummy.component.css']
})
export class DummyComponent implements OnInit {

  constructor() { }

  ngOnInit() {
    console.log('dummy loaded');
  }

}