We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9442bba commit 52a55c0Copy full SHA for 52a55c0
packages/vue-i18n-core/test/helper.ts
@@ -13,8 +13,8 @@ import {
13
14
import type {
15
App,
16
+ Component,
17
ComponentObjectPropsOptions,
- ComponentOptions,
18
ComponentPublicInstance,
19
VNode
20
} from 'vue'
@@ -24,7 +24,7 @@ import type { I18nPluginOptions } from '../src/plugin/types'
24
export interface MountOptions {
25
propsData: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
26
provide: Record<string | symbol, any> // eslint-disable-line @typescript-eslint/no-explicit-any
27
- components: ComponentOptions['components']
+ components: Record<string, Component>
28
slots: Record<string, string>
29
installI18n: boolean
30
pluginOptions?: I18nPluginOptions
0 commit comments