You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev/docs/javascript-code.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,18 +85,18 @@ Will result with `this.$opts` being:
85
85
A component has the below shown properties & methods available for use. As mentioned above, most of these should be used within the `setup()` function to make the requirements/dependencies of the component clear.
86
86
87
87
```javascript
88
-
// The root element that the compontent has been applied to.
88
+
// The root element that the component has been applied to.
89
89
this.$el
90
90
91
-
// A map of defined element references within the compontent.
91
+
// A map of defined element references within the component.
92
92
// See "Element References" above.
93
93
this.$refs
94
94
95
-
// A map of defined multi-element references within the compontent.
95
+
// A map of defined multi-element references within the component.
96
96
// See "Element References" above.
97
97
this.$manyRefs
98
98
99
-
// Options defined for the compontent.
99
+
// Options defined for the component.
100
100
this.$opts
101
101
102
102
// The registered name of the component, usually kebab-case.
There are a range of available events that are emitted as part of a public & supported API for accessing or extending JavaScript libraries & components used in the system.
162
162
163
-
Details on these events can be found in the [JavaScript Public Events file](javascript-public-events.md).
163
+
Details on these events can be found in the [JavaScript Public Events file](javascript-public-events.md).
0 commit comments