angular-docs-cn/public/docs/_examples/attribute-directives/ts/index.html

21 lines
416 B
HTML

<!-- #docregion -->
<!DOCTYPE html>
<html>
<head>
<title>Attribute Directives</title>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script>
System.config({
packages: {'app': {defaultExtension: 'js'}}
});
System.import('app/boot');
</script>
</head>
<body>
<my-app>loading...</my-app>
</body>
</html>