parent
38a59f91bd
commit
787ca1600d
|
@ -5,10 +5,9 @@ import { Contact, ContactService } from './contact.service';
|
|||
import { UserService } from '../user.service';
|
||||
|
||||
@Component({
|
||||
moduleId: module.id,
|
||||
selector: 'app-contact',
|
||||
templateUrl: 'contact.component.html',
|
||||
styleUrls: ['contact.component.css']
|
||||
templateUrl: 'app/contact/contact.component.html',
|
||||
styleUrls: ['app/contact/contact.component.css']
|
||||
})
|
||||
export class ContactComponent implements OnInit {
|
||||
contact: Contact;
|
||||
|
|
|
@ -6,10 +6,9 @@ import { Contact, ContactService } from './contact.service';
|
|||
import { UserService } from '../shared/user.service';
|
||||
|
||||
@Component({
|
||||
moduleId: module.id,
|
||||
selector: 'app-contact',
|
||||
templateUrl: 'contact.component.html',
|
||||
styleUrls: ['contact.component.css']
|
||||
templateUrl: 'app/contact/contact.component.html',
|
||||
styleUrls: ['app/contact/contact.component.css']
|
||||
})
|
||||
export class ContactComponent implements OnInit {
|
||||
contact: Contact;
|
||||
|
|
|
@ -3,9 +3,8 @@ import { Component, Input } from '@angular/core';
|
|||
import { UserService } from './user.service';
|
||||
|
||||
@Component({
|
||||
moduleId: module.id,
|
||||
selector: 'app-title',
|
||||
templateUrl: 'title.component.html',
|
||||
templateUrl: 'app/shared/title.component.html',
|
||||
})
|
||||
export class TitleComponent {
|
||||
@Input() subtitle = '';
|
||||
|
|
|
@ -7,9 +7,8 @@ import { UserService } from './user.service';
|
|||
// #docregion v1
|
||||
|
||||
@Component({
|
||||
moduleId: module.id,
|
||||
selector: 'app-title',
|
||||
templateUrl: 'title.component.html',
|
||||
templateUrl: 'app/title.component.html',
|
||||
})
|
||||
export class TitleComponent {
|
||||
@Input() subtitle = '';
|
||||
|
|
Loading…
Reference in New Issue