mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
32 lines
732 B
HTML
32 lines
732 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
|
|
<link href="/css/ionic.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<ion-app>
|
|
Loading...
|
|
</ion-app>
|
|
|
|
<script src="http://localhost:8001/angular2.bundle.js"></script>
|
|
|
|
<script>
|
|
System.paths = {
|
|
'*': '/*.js',
|
|
'rx': 'rx.js'
|
|
};
|
|
register(System);
|
|
cjs(System);
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
System.import('src/components/segment/test/basic/index').then(function(m) { m.main(); }, console.error.bind(console))
|
|
</script>
|
|
</body>
|
|
</html>
|