angular2需要用到typescript   和 npm
 
下载项目 到本地文件夹switching-to-angular2
2. cd  switching-to-angular2
3. npm install 下载
5. npm start启动后,就可以访问下载的项目中的路径 http://localhost:5555/dist/dev  可以看到项目的列表
 
 
 
组件里可以包含template 模板,  templateUrl 指向一个页面url,指令dirctives,样式style
 
@Component({
selector: "carTag",
template: `<h3 class="titles">Mother Car Component</h3>
<input type ="text" #textInput bind-value="text" />
<button on-click="onCarChange(textInput.value)">Change</button>`,
directives: [door],
styles:[ `
.titles {color:#0099FF }
.child-style {
background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;"> }
`]
})

 

 
 
 

转载于:https://www.cnblogs.com/-simplelife/p/8608863.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐