angular2 0定義指令

2021-07-25 13:04:47 字數 555 閱讀 7399

應用繼續演進。 首先加入的是highlightdirective,乙個屬性型指令,它會設定所在元素的背景色。

copy code

import

from

'@angular/core'

;@directive

()/** highlight the attached element in gold */

export

class

highlightdirective

}

copy code

template

:''

匯入highlightdirective類,並把它加入該模組的declarations陣列中,就像這樣:

copy code

declarations:[

,highlightdirective

,],

angular2 0使用元件樣式

實現方式之一,是在元件的元資料中設定styles屬性。styles屬性可以接受乙個包含 css 的字串陣列。通常我們只給它乙個字串就行了,如同下例 copy code component export class 元件樣式在很多方面都不同於傳統的全域性性樣式。這種模組化相對於 css 的傳統工作方式...

angular2 0 環境搭建

angular2.0 seed 大漠窮秋改寫版 2.執行 npm install npm start 或者在 angular seed master目錄下寫乙個小指令碼,命名為 start.bat,內容為 npm start 如果是客戶端mock模擬資料,在tools下新增server檔案件tool...

Webstorm 下的Angular2 0開發之路

人一旦上了年紀,記憶力就變得越來越不好。最近寫了許多的博文,倒不是為了給誰看,而是方便自己來搜尋,不然一下子又忘記了。如果恰巧幫助到了你,也是我的榮幸 廢話不多說,看正題 首先開啟你的webstorm。這裡插一句話,盡量保證你的webstorm是比較新的版本,在webstorm的右下角會有提示你更新...