-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (58 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Single SPA</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/[email protected]/lib/single-spa.js"></script>
</head>
<body>
<a href="#1">App 1</a>
<a href="#2">App 2</a>
<div id="app"></div>
<div id="app2"></div>
<script>
var app = {
mount: function () {
return Promise.resolve().then(function () {
document.getElementById('app').append('my-app')
console.log('mounting')}
)
},
bootstrap: function () {
return Promise.resolve().then(function () {
console.log('bootstrap me')}
)
},
unmount: function () {
return Promise.resolve().then(function() {
document.getElementById('app').innerHTML = ''
})
}
}
var app2 = {
mount: function () {
return Promise.resolve().then(function () {
document.getElementById('app2').append('the other app')
})
},
bootstrap: function () {
return Promise.resolve().then(function () {})
},
unmount: function () {
return Promise.resolve().then(function() {
document.getElementById('app2').innerHTML = ''
})
}
}
singleSpa.registerApplication("myApp", app, function () {
return window.location.hash.includes("1")
})
singleSpa.registerApplication("myApp2", app2, function () {
return window.location.hash.includes("2")
})
singleSpa.start()
</script>
</body>
</html>