-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (47 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css"
rel="stylesheet"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"
/>
<title>Taxonomy</title>
</head>
<body>
<div id="app">
<v-app>
<v-main>
<v-container fluid>
<v-treeview :items="items"></v-treeview>
</v-container>
</v-main>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script>
<script>
fetch('./dist/tree-names.json')
.then((response) => response.json())
.then((tree) => {
new Vue({
el: '#app',
vuetify: new Vuetify(),
data: () => ({ items: tree }),
});
});
/**/
</script>
</body>
</html>