當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript angular2.Component函數代碼示例

本文整理匯總了TypeScript中angular2/angular2.Component函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript Component函數的具體用法?TypeScript Component怎麽用?TypeScript Component使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Component函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: NeuralNet

var NeuralNet = (function () {
    function NeuralNet() {
    }
    NeuralNet = __decorate([
        angular2_1.Component({
            selector: 'neuralnet',
            template: 'hello world again'
        }), 
        __metadata('design:paramtypes', [])
    ], NeuralNet);
    return NeuralNet;
}());
開發者ID:molliecool,項目名稱:NeuralNet,代碼行數:12,代碼來源:app.ts

示例2: Component

import {Component, View, Directive, bootstrap, bind, NgFor, NgIf} from "angular2/angular2";

class Service {
	
}
class Service2 {
  
}

class Cmp {
	static annotations: any[];
}
Cmp.annotations = [
  Component({
    selector: 'cmp',
    injectables: [Service, bind(Service2).toValue(null)]
  }),
  View({
    template: '{{greeting}} world!',
    directives: [NgFor, NgIf]
  }),
  Directive({
    selector: '[tooltip]',
    properties: [
      'text: tooltip'
    ],
    hostListeners: {
      'onmouseenter': 'onMouseEnter()',
      'onmouseleave': 'onMouseLeave()'
    }
  })
開發者ID:GMouron,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:angular2-tests.ts

示例3: it

 it('should declare Component class', () => {
   var MyComponent =
       Component({}).View({}).View({}).Class({constructor: function() { this.works = true; }});
   expect(new MyComponent().works).toEqual(true);
 });
開發者ID:XomegaNet,項目名稱:angular,代碼行數:5,代碼來源:decorators_spec.ts

示例4: Component

import {Component, View, Directive, bootstrap, bind, NgFor, NgIf} from "angular2/angular2";

class Service {
	
}
class Service2 {
  
}

class Cmp {
	static annotations: any[];
}
Cmp.annotations = [
  Component({
    selector: 'cmp',
    bindings: [Service, bind(Service2).toValue(null)]
  }),
  View({
    template: '{{greeting}} world!',
    directives: [NgFor, NgIf]
  }),
  Directive({
    selector: '[tooltip]',
    properties: [
      'text: tooltip'
    ],
    host: {
      '(onmouseenter)': 'onMouseEnter()',
      '(onmouseleave)': 'onMouseLeave()'
    }
  })
開發者ID:ErykB2000,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:angular2-tests.ts


注:本文中的angular2/angular2.Component函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。