
- render/xhr_* -> compiler/xhr_* - render/event_config -> linker/event_config - render/dom/schema -> compiler/schema - render/dom/compiler/* -> compiler/* - render/dom/view/shared_styles_host -> render/dom/shared_styles_host
31 lines
738 B
TypeScript
31 lines
738 B
TypeScript
import {bootstrap} from 'angular2/bootstrap';
|
|
import {bind, Component, View, ViewEncapsulation} from 'angular2/core';
|
|
import {MdSwitch} from 'angular2_material/src/components/switcher/switch';
|
|
import {UrlResolver} from 'angular2/src/core/compiler/url_resolver';
|
|
import {commonDemoSetup, DemoUrlResolver} from '../demo_common';
|
|
|
|
@Component({
|
|
selector: 'demo-app',
|
|
})
|
|
@View({
|
|
templateUrl: './demo_app.html',
|
|
directives: [MdSwitch],
|
|
encapsulation: ViewEncapsulation.None,
|
|
})
|
|
class DemoApp {
|
|
toggleCount: number;
|
|
|
|
constructor() {
|
|
this.toggleCount = 0;
|
|
}
|
|
|
|
increment() {
|
|
this.toggleCount++;
|
|
}
|
|
}
|
|
|
|
export function main() {
|
|
commonDemoSetup();
|
|
bootstrap(DemoApp, [bind(UrlResolver).toValue(new DemoUrlResolver())]);
|
|
}
|