Skip to content

Commit 6366208

Browse files
authored
Fix a grammatical issue (#2984)
`however` needs a comma before it as well (just like line 181 of this doc). See https://prowritingaid.com/comma-however#:~:text=If%20you%20use,was%20another%20story. and https://www.grammar-monster.com/punctuation/commas_and_however.html
1 parent 7e859b4 commit 6366208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ At the very least, you'll want to include the post's content:
222222
<div v-html="content"></div>
223223
```
224224

225-
If you try this in your template however, Vue will show an error, explaining that **every component must have a single root element**. You can fix this error by wrapping the template in a parent element, such as:
225+
If you try this in your template, however, Vue will show an error, explaining that **every component must have a single root element**. You can fix this error by wrapping the template in a parent element, such as:
226226

227227
```html
228228
<div class="blog-post">

0 commit comments

Comments
 (0)