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 1111- ** 型**
1212
1313 ``` ts
14- function onMounted(callback : () => void ): void
14+ function onMounted(callback : () => void , target ? : ComponentInternalInstance | null ): void
1515 ```
1616
1717- ** 詳細**
5353- ** 型**
5454
5555 ` ` ` ts
56- function onUpdated(callback: () => void): void
56+ function onUpdated(callback: () => void, target?: ComponentInternalInstance | null ): void
5757 ` ` `
5858
5959- ** 詳細**
9696- ** 型**
9797
9898 ` ` ` ts
99- function onUnmounted(callback: () => void): void
99+ function onUnmounted(callback: () => void, target?: ComponentInternalInstance | null ): void
100100 ` ` `
101101
102102- ** 詳細**
135135- ** 型**
136136
137137 ` ` ` ts
138- function onBeforeMount(callback: () => void): void
138+ function onBeforeMount(callback: () => void, target?: ComponentInternalInstance | null ): void
139139 ` ` `
140140
141141- ** 詳細**
151151- ** 型**
152152
153153 ` ` ` ts
154- function onBeforeUpdate(callback: () => void): void
154+ function onBeforeUpdate(callback: () => void, target?: ComponentInternalInstance | null ): void
155155 ` ` `
156156
157157- ** 詳細**
167167- ** 型**
168168
169169 ` ` ` ts
170- function onBeforeUnmount(callback: () => void): void
170+ function onBeforeUnmount(callback: () => void, target?: ComponentInternalInstance | null ): void
171171 ` ` `
172172
173173- ** 詳細**
282282- ** 型**
283283
284284 ` ` ` ts
285- function onActivated(callback: () => void): void
285+ function onActivated(callback: () => void, target?: ComponentInternalInstance | null ): void
286286 ` ` `
287287
288288- ** 参照** [ガイド - キャッシュされたインスタンスのライフサイクル](/ guide / built - ins / keep - alive #lifecycle - of - cached - instance )
296296- ** 型**
297297
298298 ` ` ` ts
299- function onDeactivated(callback: () => void): void
299+ function onDeactivated(callback: () => void, target?: ComponentInternalInstance | null ): void
300300 ` ` `
301301
302302- ** 参照** [ガイド - キャッシュされたインスタンスのライフサイクル](/ guide / built - ins / keep - alive #lifecycle - of - cached - instance )
You can’t perform that action at this time.
0 commit comments