diff --git a/src/guide/introduction.md b/src/guide/introduction.md index 8fb7c0524e..1a352c94c3 100644 --- a/src/guide/introduction.md +++ b/src/guide/introduction.md @@ -189,7 +189,7 @@ There are quite a few other directives, each with its own special functionality. ```html
    -
  1. +
  2. {{ todo.text }}
diff --git a/src/guide/list.md b/src/guide/list.md index ec4be39071..e5b0027d47 100644 --- a/src/guide/list.md +++ b/src/guide/list.md @@ -168,7 +168,7 @@ Sometimes we want to display a filtered or sorted version of an array without ac For example: ```html -
  • {{ n }}
  • +
  • {{ n }}
  • ``` ```js @@ -188,7 +188,7 @@ In situations where computed properties are not feasible (e.g. inside nested `v- ```html ``` @@ -211,7 +211,7 @@ methods: { ```html
    - {{ n }} + {{ n }}
    ``` @@ -225,7 +225,7 @@ Similar to template `v-if`, you can also use a `