'Component' 태그의 글 목록
본문 바로가기

Component

[Angular Tutorial 02] The Hero Editor [Angular Tutorial 02] The Hero Editorhttps://angular.io/tutorial/toh-pt1 다음 명령어를 통하여 generate 타입의 heroes 라는 이름의 component 를 생성 합니다. ng generate component heroes herose component가 생성 되었습니다.컴포넌트 하위에는 css, html, ts, spec.ts 파일이 포함되어 있습니다. app/heroes/heroes.component.ts (initial version) 파일의 구조를 살펴 봅시다. import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-heroes', templateU..
Step 5 Angular, View 안의 View 생성하기 안녕하세요 ~ 오늘은 Angular 프로젝트에서 Component 안의 Component, View 안에 View 를 생성 해 보도록 하겠습니다 ! 아주아주 간단해요 ~~ 저희는 pageSearch View 하위에 detail-view 와 list-view 를 생성 해 보도록 하겠습니다 ! CLI 를 이용하여 다음 명령어를 실행 해 주세요 ~~매번 느끼는 것이지만 CLI 는 정말 편리한 것 같습니다 ^^ ng generate component pageSearch/detail_view ng generate component pageSearch/list_view 이렇게 pageSearch 하위에 두개의 컴포넌트들이 생성 되었습니다. 그리고 하위 view 를 넣을 page-search-main.componen..
Step 2 Angular, Module, Component 생성 오늘은 모듈(Module) 과 컴포넌트(Component) 를 생성 해 보도록 하겠습니다. 쉽게말해서 View(Component의 단위) 를 생성한다고 생각하시면 될 것 같습니다. 오늘 우리는 2개의 View ( intro, history ) 를 추가 할 예정입니다 ~~^^ CLI 사용방법은 이전 블로그 포스팅을 참고 해 주세요 !!! 2018/09/11 - Step 1 Development Environment Setting ng new webProject 새 프로젝트를 생성합니다. 대 소문자로 이루어져야 합니다. 프로젝트 생성 완료 ng generate module app-routing Routing Module 사용을 위하여 app-routing Module 을 생성정상적으로 실행되면 src/app..