File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/runtime-core/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,19 +47,19 @@ export function devtoolsUnmountApp(app: App) {
47
47
devtools . emit ( DevtoolsHooks . APP_UNMOUNT , app )
48
48
}
49
49
50
- export const devtoolsComponentAdded = /*#__PURE__*/ createDevtoolsHook (
50
+ export const devtoolsComponentAdded = /*#__PURE__*/ createDevtoolsComponentHook (
51
51
DevtoolsHooks . COMPONENT_ADDED
52
52
)
53
53
54
- export const devtoolsComponentUpdated = /*#__PURE__*/ createDevtoolsHook (
54
+ export const devtoolsComponentUpdated = /*#__PURE__*/ createDevtoolsComponentHook (
55
55
DevtoolsHooks . COMPONENT_UPDATED
56
56
)
57
57
58
- export const devtoolsComponentRemoved = /*#__PURE__*/ createDevtoolsHook (
58
+ export const devtoolsComponentRemoved = /*#__PURE__*/ createDevtoolsComponentHook (
59
59
DevtoolsHooks . COMPONENT_REMOVED
60
60
)
61
61
62
- function createDevtoolsHook ( hook : DevtoolsHooks ) {
62
+ function createDevtoolsComponentHook ( hook : DevtoolsHooks ) {
63
63
return ( component : ComponentInternalInstance ) => {
64
64
if ( ! devtools ) return
65
65
devtools . emit (
You can’t perform that action at this time.
0 commit comments