-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 1.89 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 1.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vuetable-2-tutorial - A Vue.js project</title>
<meta name="description" content="A Vue.js project">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="https://unpkg.com/vuep/dist/vuep.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div id="app"></div>
</body>
<script>
window.$docsify = {
name: 'vuetable-2-tutorial',
repo: 'https://github.com/ratiw/vuetable-2',
loadSidebar: true
}
</script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://unpkg.com/babel-standalone/babel.min.js"></script>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vuep"></script>
<script src="https://unpkg.com/vuetable-2"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js" charset="utf-8"></script>
<script src="https://unpkg.com/accounting" charset="utf-8"></script>
<style type="text/css">
.vuep {
height: inherit !important;
display: flex;
flex-direction: column;
}
.vuep-editor,
.vuep-preview {
width: 100%;
}
.vuep-preview{
min-height:600px;
}
.cm-s-material .cm-error {
color: rgba(255, 83, 112, 1);
background-color: inherit !important;
}
table.vuetable{
display: table;
}
.markdown-section{
max-width:1100px
}
</style>
</html>