-
Notifications
You must be signed in to change notification settings - Fork 334
/
Copy pathindex.html
37 lines (37 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<title>docs</title>
<link rel="stylesheet" href="https://unpkg.com/docute@3/dist/docute.css">
<style>
#app .translations {
display: none;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/docute@3/dist/docute.js"></script>
<script>
docute.init({
home: 'https://raw.githubusercontent.com/pablohpsilva/vuejs-component-style-guide/master/README.md',
repo: 'pablohpsilva/vuejs-component-style-guide',
// tocVisibleDepth: 2,
nav: [
{title: 'Home', path: '/'},
{title: 'Languages', type: 'dropdown', items: [
{title: 'English', path: '/'},
{title: 'Português do Brasil', path: '/portuguese', source: 'https://raw.githubusercontent.com/pablohpsilva/vuejs-component-style-guide/master/README-PTBR.md'},
{title: '中文', path: '/chinese', source: 'https://raw.githubusercontent.com/pablohpsilva/vuejs-component-style-guide/master/README-CN.md'},
{title: '日本語', path: '/japanese', source: 'https://raw.githubusercontent.com/pablohpsilva/vuejs-component-style-guide/master/README-JP.md'},
{title: '한국어', path: '/korean', source: 'https://raw.githubusercontent.com/pablohpsilva/vuejs-component-style-guide/master/README-KR.md'},
{title: 'русский язык', path: '/russian', source: 'https://raw.githubusercontent.com/pablohpsilva/vuejs-component-style-guide/master/README-RU.md'}
]}
]
});
</script>
</body>
</html>