diff --git a/docs/vue2.md b/docs/vue2.md
index 6e5f47ef..08d02c0a 100644
--- a/docs/vue2.md
+++ b/docs/vue2.md
@@ -12,6 +12,7 @@ Vue 是一套用于构建用户界面的渐进式框架
- [Vue 2.x 官方文档](https://v2.cn.vuejs.org/)
- [Vue Router 3.x 官方文档](https://v3.router.vuejs.org/)
+
#### 快速创建 **Vue** 项目 ([Vue CLI](https://cli.vuejs.org/zh/guide/creating-a-project.html))
@@ -27,6 +28,8 @@ npx @vue/cli create hello-world
```
+---
+
```js
var app = new Vue({
el: '#app',
@@ -48,6 +51,8 @@ var app = new Vue({
```
+---
+
```js
var vm = new Vue({
el: '#example',
@@ -82,6 +87,8 @@ var vm = new Vue({
```
+---
+
```js
var app2 = new Vue({
el: '#app-2',
@@ -100,6 +107,8 @@ var app2 = new Vue({
```
+---
+
```js
var app3 = new Vue({
el: '#app-3',
@@ -123,6 +132,8 @@ var app3 = new Vue({
```
+---
+
```js
var app4 = new Vue({
el: '#app-4',
@@ -147,6 +158,8 @@ var app4 = new Vue({
```
+---
+
```js
var app5 = new Vue({
el: '#app-5',
@@ -706,8 +719,11 @@ var example2 = new Vue({
}
}
})
+```
-// 也可以用 JavaScript 直接调用方法
+也可以用 JavaScript 直接调用方法
+
+```js
example2.greet() // => 'Hello Vue.js!'
```
@@ -784,7 +800,9 @@ methods: {
-
...
+
+ ...
+
```
这个 `.passive` [修饰符](#v-on-事件修饰符)尤其能够提升移动端的性能。
@@ -802,7 +820,6 @@ methods: {
```
-
### .exact 修饰符
```html
@@ -814,6 +831,651 @@ methods: {