Skip to content

Commit 46ec648

Browse files
authored
fix(types): vue.d.ts should use relative import to v3-component-public-instance (#12668)
fix #12666
1 parent 7d4a772 commit 46ec648

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

types/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"jsx": "preserve",
1010
"strict": true,
1111
"noEmit": true,
12-
"baseUrl": ".",
1312
"paths": {
1413
"vue": ["../index.d.ts"]
1514
}

types/vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { VNode, VNodeData, VNodeChildren, NormalizedScopedSlot } from './vnode'
1414
import { PluginFunction, PluginObject } from './plugin'
1515
import { DefineComponent } from './v3-define-component'
1616
import { nextTick } from './v3-generated'
17-
import { ComponentPublicInstance } from 'v3-component-public-instance'
17+
import { ComponentPublicInstance } from './v3-component-public-instance'
1818

1919
export interface CreateElement {
2020
(

0 commit comments

Comments
 (0)