-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 1.54 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
<!doctype html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<style>
body, html {
margin: 0;
padding: 0;
height: 100%
}
#app {
height: 100%;
width: 100%;
}
.box {
padding: 15px;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="app">
<tile-frame>
<vertical-split>
<horizontal-split slot="left">
<div class="box bg-faded" slot="top">
<h1>Vue2 Tile Panel example</h1>
<p>In this example you can see the basic usage of the application</p>
Vist: <a href="https://github.com/l0rn/vue-tile-panels">GitHub</a> for viewing the project.
</div>
<div class="box bg-info" slot="bottom">
<vertical-split>
</vertical-split>
</div>
</horizontal-split>
<div class="box bg-warning" slot="right">
<div id="view-source"></div>
</div>
</vertical-split>
</tile-frame>
</div>
<script>
Vue.use(VueTilePanels)
new Vue({
el: '#app',
})
</script>
</body>
</html>