Skip to content

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
QingWei-Li committed Feb 19, 2017
1 parent e2b7b97 commit fd9c3bd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- [Custom navbar](/custom-navbar)
- [Cover page](/cover)

- Configuration
- Customization
- [Configuration](/configuration)
- [Themes](/themes)
- [Using plugins](/plugins)
Expand Down
2 changes: 1 addition & 1 deletion docs/cover.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*

Expand Down Expand Up @@ -44,7 +44,7 @@ You can manually initialize a Vue instance.

<script>
new Vue({
el: 'main',
el: '#main',
data: { msg: 'Vue' }
})
</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- [定制导航栏](zh-cn/custom-navbar)
- [封面](zh-cn/cover)

- 配置
- 定制化
- [配置项](zh-cn/configuration)
- [主题](zh-cn/themes)
- [使用插件](zh-cn/plugins)
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<script src="//unpkg.com/docsify"></script>
```

接着就可以愉快地在 Markdown 里写 Vue 了。默认会执行 `new Vue({ el: 'main' })` 创建示例。
接着就可以愉快地在 Markdown 里写 Vue 了。默认会执行 `new Vue({ el: '#main' })` 创建示例。

*README.md*

Expand Down Expand Up @@ -43,7 +43,7 @@

<script>
new Vue({
el: 'main',
el: '#main',
data: { msg: 'Vue' }
})
</script>
Expand Down
6 changes: 3 additions & 3 deletions src/core/render/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}

Expand Down

0 comments on commit fd9c3bd

Please sign in to comment.