angular-docs-cn/public/docs/_examples/homepage-hello-world/ts/index.1.html

33 lines
978 B
HTML
Raw Normal View History

<!-- #docregion -->
<!DOCTYPE html>
<html>
<head>
<title>Angular Hello World</title>
2016-04-27 14:28:22 -04:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<!-- 1. Load libraries -->
<!-- Polyfills for older browsers -->
2016-08-31 01:21:47 -04:00
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
2016-10-12 17:41:42 -04:00
<script src="https://unpkg.com/zone.js@0.6.25"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
2016-10-21 17:31:09 -04:00
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
2016-10-12 17:41:42 -04:00
<script src="https://unpkg.com/typescript@2.0.3/lib/typescript.js"></script>
<!-- 2. Configure SystemJS -->
2016-04-27 14:28:22 -04:00
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
2016-04-07 16:31:40 -04:00
2016-04-27 14:28:22 -04:00
<!-- Display the application -->
<body>
<hello-world>Loading...</hello-world>
</body>
2016-04-07 16:31:40 -04:00
</html>