Skip to content

Commit e56c456

Browse files
authored
fix variable name in code. (#1028)
CounterApp to Counter.
1 parent 20d1bc6 commit e56c456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Vue.createApp(Counter).mount('#counter')
5555
We have already created our very first Vue app! This looks pretty similar to rendering a string template, but Vue has done a lot of work under the hood. The data and the DOM are now linked, and everything is now **reactive**. How do we know? Take a look at the example below where `counter` property increments every second and you will see how rendered DOM changes:
5656

5757
```js{8-10}
58-
const CounterApp = {
58+
const Counter = {
5959
data() {
6060
return {
6161
counter: 0

0 commit comments

Comments
 (0)