-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html data-ng-app="test">
<head>
<title></title>
<meta charset="utf-8" />
<base href="/" />
</head>
<body>
<img src="img/aa.PNG" alt="Alternate Text" />
<div data-ui-view></div>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script>
(function () {
var app = angular.module('test', ['ui.router']);
app.config(function ($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/vominhquoc');
$stateProvider.state('home', {
url: '/vominhquoc',
template: 'HELLO'
})
.state('other', {
url: '/other',
template: 'TEST'
});
});
app.config(function ($locationProvider) {
$locationProvider.html5Mode(true);
});
}())
</script>
</body>
</html>