Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 강추
- 카이로소프트
- Monument Valley
- 모뉴먼트 밸리
- 추천
- 시사회
- 아이폰
- 게임
- 핑크
- 아이러브니키
- 아이패드
- 감상
- JavaScript
- 영화
- 레고
- 후기
- 맛집
- 유료
- great forest
- goblin sword
- 공략
- 일상
- 가사
- jQuery
- Monument
- Pink
- 모뉴먼트
- php
- 잡담
- 아이폰게임
Archives
- Today
- Total
잡담소장소
angularjs 2 hello world 본문
사내 프로젝트로 angularjs2를 사용해본다고 해서 공부해보려고 사이트에 들어갔더니
뭣도 모르겠어서 hello-world 코드부터 분석해본다
index.html
<!DOCTYPE html> <html> <head>Angular 2 Hello World </head> <body>Loading... </body> </html>
app/main.ts
import {bootstrap} from 'angular2/platform/browser'; //browser.ts에서 bootstrap을 import import {HelloWorld} from './hello_world'; //hello_world.ts에서 HelloWorld class import bootstrap(HelloWorld);
app/hello_world.ts
import {Component} from 'angular2/core'; @Component({ // Declare the tag name in index.html to where the component attaches selector: 'hello-world', //index.html의 hello-world // Location of the template for this component templateUrl: 'app/hello_world.html' }) export class HelloWorld { // Declaring the variable for binding with initial value yourName: string = ''; }
app/hello_world.html
Hello {{yourName}}!
반응형
'Study ;3' 카테고리의 다른 글
angular material (0) | 2017.04.13 |
---|---|
ag-grid 사용기 (0) | 2016.06.30 |
키체인에 공개키 추가하기 in Mac (0) | 2015.09.15 |
xcode - iCloud의 key-value 처음 사용해보기 (0) | 2015.09.15 |
angularJS Tip(일지 아닐지..) (0) | 2015.09.10 |
Comments