This commit is contained in:
qingwei.li 2017-02-21 14:05:58 +08:00
commit b4fc6a9d72
4 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@ If you need custom navigation, you can create a HTML-based navigation bar (but n
## Markdown
Alternatively, you can create a custom markdown-based navigation file by setting `loadNavbar` to **true** and creating `_navbar.md`. Detaile are available in the [load-navbar configuration paragraph](configuration#load-navbar).
Alternatively, you can create a custom markdown-based navigation file by setting `loadNavbar` to **true** and creating `_navbar.md`. Details are available in the [load-navbar configuration paragraph](configuration#load-navbar).
```html
<!-- index.html -->

View file

@ -25,7 +25,7 @@ docs/zh-cn/guide.md => http://domain.com/zh-cn/guide
## Custom sidebar
By default, the table of contents in the sidebar is automatically generated based on your markdown files. If you need a custom sidebar, then you can create your own `sidebar.md` (see [this documentation's sidebar](https://github.com/QingWei-Li/docsify/blob/master/docs/_sidebar.md) for an example):
By default, the table of contents in the sidebar is automatically generated based on your markdown files. If you need a custom sidebar, then you can create your own `_sidebar.md` (see [this documentation's sidebar](https://github.com/QingWei-Li/docsify/blob/master/docs/_sidebar.md) for an example):
First, you need to set `loadSidebar` to **true**. Details are available in the [configuration paragraph](configuration#load-sidebar).

View file

@ -76,7 +76,7 @@ You can manually initialize a Vue instance.
</template>
<script>
export default {
module.exports = {
data: function () {
return { name: 'Vue' }
}

View file

@ -75,7 +75,7 @@
</template>
<script>
export default {
module.exports = {
data: function () {
return { name: 'Vue' }
}