File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 11
11
- ** النوع**
12
12
13
13
``` ts
14
- function onMounted(callback : () => void ): void
14
+ function onMounted(callback : () => void , target ? : ComponentInternalInstance | null ): void
15
15
```
16
16
17
17
- ** التفاصيل**
53
53
- ** النوع**
54
54
55
55
` ` ` ts
56
- function onUpdated(callback: () => void): void
56
+ function onUpdated(callback: () => void, target?: ComponentInternalInstance | null ): void
57
57
` ` `
58
58
59
59
- ** التفاصيل**
96
96
- ** النوع**
97
97
98
98
` ` ` ts
99
- function onUnmounted(callback: () => void): void
99
+ function onUnmounted(callback: () => void, target?: ComponentInternalInstance | null ): void
100
100
` ` `
101
101
102
102
- ** التفاصيل**
135
135
- ** النوع**
136
136
137
137
` ` ` ts
138
- function onBeforeMount(callback: () => void): void
138
+ function onBeforeMount(callback: () => void, target?: ComponentInternalInstance | null ): void
139
139
` ` `
140
140
141
141
- ** التفاصيل**
151
151
- ** النوع**
152
152
153
153
` ` ` ts
154
- function onBeforeUpdate(callback: () => void): void
154
+ function onBeforeUpdate(callback: () => void, target?: ComponentInternalInstance | null ): void
155
155
` ` `
156
156
157
157
- ** التفاصيل**
167
167
- ** النوع**
168
168
169
169
` ` ` ts
170
- function onBeforeUnmount(callback: () => void): void
170
+ function onBeforeUnmount(callback: () => void, target?: ComponentInternalInstance | null ): void
171
171
` ` `
172
172
173
173
- ** التفاصيل**
282
282
- ** النوع**
283
283
284
284
` ` ` ts
285
- function onActivated(callback: () => void): void
285
+ function onActivated(callback: () => void, target?: ComponentInternalInstance | null ): void
286
286
` ` `
287
287
288
288
- ** اطلع أيضا على** [دليل - دورة حياة النسخة المخزنة](/ guide / built - ins / keep - alive #lifecycle - of - cached - instance )
296
296
- ** النوع**
297
297
298
298
` ` ` ts
299
- function onDeactivated(callback: () => void): void
299
+ function onDeactivated(callback: () => void, target?: ComponentInternalInstance | null ): void
300
300
` ` `
301
301
302
302
- ** اطلع أيضا على** [دليل - دورة حياة النسخة المخزنة](/ guide / built - ins / keep - alive #lifecycle - of - cached - instance )
You can’t perform that action at this time.
0 commit comments