docs: fix md samples in markdown guide (#474)

Co-authored-by: Daniel Kreiseder <daniel@kreiseder.at>
pull/675/head
Daniel Kreiseder 3 years ago committed by GitHub
parent 0587d0b78a
commit 7cffbbb2df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -238,7 +238,9 @@ export default {
```html ```html
<ul> <ul>
<li v-for="todo in todos" :key="todo.id">{{ todo.text }}</li> <li v-for="todo in todos" :key="todo.id">
{{ todo.text }}
</li>
</ul> </ul>
``` ```
@ -281,7 +283,7 @@ In addition to a single line, you can also specify multiple single lines, ranges
**Input** **Input**
```` ````
```js{1,4,6-7} ```js{1,4,6-8}
export default { // Highlighted export default { // Highlighted
data () { data () {
return { return {

Loading…
Cancel
Save