angular-cn/public/docs/_examples/displaying-data/ts/index.1.html

23 lines
477 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Displaying Data</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>
<hr>
<my-app-ctor>loading...</my-app-ctor>
</body>
</html>