-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (42 loc) · 1.31 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vony Javascript</title>
<script src="vony.js"></script>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.0/css/bootstrap.min.css'
integrity='sha512-XWTTruHZEYJsxV3W/lSXG1n3Q39YIWOstqvmFsdNEEQfHoZ6vm6E9GK2OrF6DSJSpIbRbi+Nn0WDPID9O7xB2Q=='
crossorigin='anonymous' />
</head>
<body>
<br>
<div class="container">
<h3 id="app">
</h3>
<button onclick="goTo('Home')">Home</button>
<button onclick="goTo('About')">About</button>
<button onclick="goTo('Profile')">Profile</button>
<button onclick="goTo('Contact')">Contact</button>
</div>
<script>
let myApp;
ready(() => {
myApp = Vony({
id: 'app' ,
title : 'Welcome to Vony JS'
}).set('This is Dashboard');
});
function goTo(value) {
Vony({
urlRoute : value+'.html',
title : value
})
.route(() => {
myApp.set('This is ' + value);
});
}
</script>
</body>
</html>