angular-docs-cn/public/docs/_examples/styleguide/js/index.html

28 lines
1008 B
HTML
Raw Normal View History

<!-- #docregion -->
<html>
<head>
2016-04-27 14:28:22 -04:00
<title>Documentation Style</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
2016-09-13 05:34:44 -04:00
<script src="node_modules/rxjs/bundles/Rx.js"></script>
2016-06-13 21:12:25 -04:00
<script src="node_modules/@angular/core/bundles/core.umd.js"></script>
<script src="node_modules/@angular/common/bundles/common.umd.js"></script>
<script src="node_modules/@angular/compiler/bundles/compiler.umd.js"></script>
<script src="node_modules/@angular/platform-browser/bundles/platform-browser.umd.js"></script>
<script src="node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js"></script>
<script src='app.js'></script>
</head>
<body>
<my-app>foo2</my-app>
</body>
</html>