docs: update

This commit is contained in:
qingwei.li 2017-02-18 19:36:28 +08:00 committed by cinwell.li
parent e2b7b976cf
commit fd9c3bd19d
6 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
- [Custom navbar](/custom-navbar)
- [Cover page](/cover)
- Configuration
- Customization
- [Configuration](/configuration)
- [Themes](/themes)
- [Using plugins](/plugins)

View File

@ -1,6 +1,6 @@
# Cover
Activate the cover feature by setting `coverpage`. The detail in [Configuration#coverpage](zh-cn/configuration#coverpage).
Activate the cover feature by setting `coverpage`. The detail in [Configuration#coverpage](configuration#coverpage).
## Basic usage

View File

@ -13,7 +13,7 @@ Load the Vue in `index.html`.
```
Then you can immediately write Vue code at Markdown file.
`new Vue({ el: 'main' })` script is executed by default to create instance.
`new Vue({ el: '#main' })` script is executed by default to create instance.
*README.md*
@ -44,7 +44,7 @@ You can manually initialize a Vue instance.
<script>
new Vue({
el: 'main',
el: '#main',
data: { msg: 'Vue' }
})
</script>

View File

@ -4,7 +4,7 @@
- [定制导航栏](zh-cn/custom-navbar)
- [封面](zh-cn/cover)
- 配置
- 定制化
- [配置项](zh-cn/configuration)
- [主题](zh-cn/themes)
- [使用插件](zh-cn/plugins)

View File

@ -12,7 +12,7 @@
<script src="//unpkg.com/docsify"></script>
```
接着就可以愉快地在 Markdown 里写 Vue 了。默认会执行 `new Vue({ el: 'main' })` 创建示例。
接着就可以愉快地在 Markdown 里写 Vue 了。默认会执行 `new Vue({ el: '#main' })` 创建示例。
*README.md*
@ -43,7 +43,7 @@
<script>
new Vue({
el: 'main',
el: '#main',
data: { msg: 'Vue' }
})
</script>

View File

@ -28,9 +28,9 @@ function renderMain (html) {
// execute script
this.config.executeScript && executeScript()
if (!this.config.executeScript
&& typeof window.Vue !== 'undefined'
&& !executeScript()) {
if (!this.config.executeScript &&
typeof window.Vue !== 'undefined' &&
!executeScript()) {
window.__EXECUTE_RESULT__ = new window.Vue().$mount('#main')
}