Skip to content

Commit 73f9e88

Browse files
authored
fix(docs): correct output in composition api example (#2012)
Updated the example output in the documentation to reflect the correct HTML structure. Changed <p> tags to <h1> tags to align with the intended rendered output: Previous output: <p>こんにちは、世界</p> Corrected output: <h1>こんにちは、世界</h1>
1 parent 1878ac2 commit 73f9e88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guide/advanced/composition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The output follows:
8282

8383
```vue
8484
<div id="app">
85-
<p>こんにちは、世界</p>
85+
<h1>こんにちは、世界</h1>
8686
</div>
8787
```
8888

0 commit comments

Comments
 (0)