2016-05-19 14:31:21 -07:00
|
|
|
import {bootstrap} from '@angular/platform-browser';
|
2016-04-28 17:50:03 -07:00
|
|
|
import {Component} from '@angular/core';
|
2015-12-06 14:21:34 +02:00
|
|
|
|
|
|
|
@Component({selector: '[svg-group]', template: `<svg:text x="20" y="20">Hello</svg:text>`})
|
|
|
|
class SvgGroup {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'svg-app',
|
|
|
|
template: `<svg>
|
|
|
|
<g svg-group></g>
|
|
|
|
</svg>`,
|
|
|
|
directives: [SvgGroup]
|
|
|
|
})
|
|
|
|
class SvgApp {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
bootstrap(SvgApp);
|
|
|
|
}
|