interface AppConfig

Properties

compilerOptions

Options to pass to @vue/compiler-dom. Only supported in runtime compiler build.

Signature
compilerOptions: RuntimeCompilerOptions;

errorHandler

Signature
errorHandler?: (err: unknown, instance: ComponentPublicInstance | null, info: string) => void;

globalProperties

Signature
globalProperties: Record<string, any>;

isCustomElement

Signature
isCustomElement?: (tag: string) => boolean;

isNativeTag

Signature
readonly isNativeTag?: (tag: string) => boolean;

optionMergeStrategies

Signature
optionMergeStrategies: Record<string, OptionMergeFunction>;

performance

Signature
performance: boolean;

unwrapInjectedRef

Temporary config for opt-in to unwrap injected refs. TODO deprecate in 3.3

Signature
unwrapInjectedRef?: boolean;

warnHandler

Signature
warnHandler?: (msg: string, instance: ComponentPublicInstance | null, trace: string) => void;