8000 tweaks · vuejs/rfcs@54ca64c · GitHub
[go: up one dir, main page]

Skip to content

Commit 54ca64c

Browse files
committed
tweaks
1 parent 8be245e commit 54ca64c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

active-rfcs/0000-class-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,13 +477,13 @@ class Foo extends Vue {
477477
}
478478
```
479479

480-
This can be worked around by exposing the raw, original instance as a speical property (naming tentative):
480+
This can be worked around by exposing the raw, original instance as a special property (naming tentative):
481481

482482
``` js
483483
class Foo extends Vue {
484484
#count = 0
485485
created() {
486-
this.$self.#count // confirmed to work in Chrome 73
486+
this.$private.#count // confirmed to work in Chrome 73
487487
}
488488
}
489489
```

0 commit comments

Comments
 (0)
0