2016-08-23 19:01:30 +00:00
|
|
|
import {
|
2016-09-30 17:57:38 +00:00
|
|
|
Component,
|
|
|
|
AsyncComponent,
|
2016-08-23 19:01:30 +00:00
|
|
|
ComponentOptions,
|
2016-09-05 10:53:34 +00:00
|
|
|
FunctionalComponentOptions,
|
2016-08-23 19:01:30 +00:00
|
|
|
DirectiveOptions,
|
2017-10-06 18:45:14 +00:00
|
|
|
DirectiveFunction,
|
|
|
|
RecordPropsDefinition,
|
|
|
|
ThisTypedComponentOptionsWithArrayProps,
|
|
|
|
ThisTypedComponentOptionsWithRecordProps,
|
2022-05-27 09:26:55 +00:00
|
|
|
WatchOptions
|
|
|
|
} from './options'
|
|
|
|
import { VNode, VNodeData, VNodeChildren, NormalizedScopedSlot } from './vnode'
|
|
|
|
import { PluginFunction, PluginObject } from './plugin'
|
2022-07-08 02:39:23 +00:00
|
|
|
import { DefineComponent } from './v3-define-component'
|
2022-08-18 07:56:37 +00:00
|
|
|
import { nextTick, UnwrapNestedRefs, ShallowUnwrapRef } from './v3-generated'
|
|
|
|
import {
|
|
|
|
UnwrapMixinsType,
|
|
|
|
IntersectionMixin
|
|
|
|
} from './v3-component-public-instance'
|
|
|
|
import {
|
|
|
|
ExtractComputedReturns,
|
|
|
|
ComponentOptionsMixin
|
|
|
|
} from './v3-component-options'
|
2022-10-11 03:51:05 +00:00
|
|
|
import { Directive, ObjectDirective } from './v3-directive'
|
2016-08-23 19:01:30 +00:00
|
|
|
|
2017-10-06 18:45:14 +00:00
|
|
|
export interface CreateElement {
|
2022-05-27 09:26:55 +00:00
|
|
|
(
|
|
|
|
tag?:
|
|
|
|
| string
|
|
|
|
| Component<any, any, any, any>
|
|
|
|
| AsyncComponent<any, any, any, any>
|
|
|
|
| (() => Component),
|
|
|
|
children?: VNodeChildren
|
|
|
|
): VNode
|
|
|
|
(
|
|
|
|
tag?:
|
|
|
|
| string
|
|
|
|
| Component<any, any, any, any>
|
|
|
|
| AsyncComponent<any, any, any, any>
|
|
|
|
| (() => Component),
|
|
|
|
data?: VNodeData,
|
|
|
|
children?: VNodeChildren
|
|
|
|
): VNode
|
2016-10-08 18:15:36 +00:00
|
|
|
}
|
|
|
|
|
2022-07-15 08:52:27 +00:00
|
|
|
type NeverFallback<T, D> = [T] extends [never] ? D : T
|
|
|
|
|
2022-07-13 02:44:57 +00:00
|
|
|
export interface Vue<
|
|
|
|
Data = Record<string, any>,
|
|
|
|
Props = Record<string, any>,
|
2022-07-22 02:06:43 +00:00
|
|
|
Instance = never,
|
2022-07-13 02:44:57 +00:00
|
|
|
Options = never,
|
|
|
|
Emit = (event: string, ...args: any[]) => Vue
|
|
|
|
> {
|
|
|
|
// properties with different types in defineComponent()
|
|
|
|
readonly $data: Data
|
|
|
|
readonly $props: Props
|
2022-07-22 02:06:43 +00:00
|
|
|
readonly $parent: NeverFallback<Instance, Vue> | null
|
|
|
|
readonly $root: NeverFallback<Instance, Vue>
|
|
|
|
readonly $children: NeverFallback<Instance, Vue>[]
|
2022-07-15 08:52:27 +00:00
|
|
|
readonly $options: NeverFallback<Options, ComponentOptions<Vue>>
|
2022-07-13 02:44:57 +00:00
|
|
|
$emit: Emit
|
2022-07-08 07:39:16 +00:00
|
|
|
|
2022-07-13 02:44:57 +00:00
|
|
|
// Vue 2 only or shared
|
2022-07-08 07:39:16 +00:00
|
|
|
readonly $el: Element
|
2022-05-27 09:26:55 +00:00
|
|
|
readonly $refs: {
|
2022-07-15 09:05:04 +00:00
|
|
|
[key: string]:
|
2022-07-22 02:06:43 +00:00
|
|
|
| NeverFallback<Instance, Vue>
|
2022-07-15 09:05:04 +00:00
|
|
|
| Vue
|
|
|
|
| Element
|
2022-07-22 02:06:43 +00:00
|
|
|
| (NeverFallback<Instance, Vue> | Vue | Element)[]
|
2022-07-15 09:05:04 +00:00
|
|
|
| undefined
|
2022-05-27 09:26:55 +00:00
|
|
|
}
|
|
|
|
readonly $slots: { [key: string]: VNode[] | undefined }
|
|
|
|
readonly $scopedSlots: { [key: string]: NormalizedScopedSlot | undefined }
|
|
|
|
readonly $isServer: boolean
|
2022-07-08 07:39:16 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
readonly $ssrContext: any
|
|
|
|
readonly $vnode: VNode
|
|
|
|
readonly $attrs: Record<string, string>
|
|
|
|
readonly $listeners: Record<string, Function | Function[]>
|
|
|
|
|
|
|
|
$mount(elementOrSelector?: Element | string, hydrating?: boolean): this
|
|
|
|
$forceUpdate(): void
|
|
|
|
$destroy(): void
|
|
|
|
$set: typeof Vue.set
|
|
|
|
$delete: typeof Vue.delete
|
2016-08-23 19:01:30 +00:00
|
|
|
$watch(
|
2017-02-10 07:06:24 +00:00
|
|
|
expOrFn: string,
|
2017-10-06 18:45:14 +00:00
|
|
|
callback: (this: this, n: any, o: any) => void,
|
2017-02-10 07:06:24 +00:00
|
|
|
options?: WatchOptions
|
2022-05-27 09:26:55 +00:00
|
|
|
): () => void
|
2017-02-10 07:06:24 +00:00
|
|
|
$watch<T>(
|
2017-02-11 11:25:17 +00:00
|
|
|
expOrFn: (this: this) => T,
|
2017-10-06 18:45:14 +00:00
|
|
|
callback: (this: this, n: T, o: T) => void,
|
2016-08-23 19:01:30 +00:00
|
|
|
options?: WatchOptions
|
2022-05-27 09:26:55 +00:00
|
|
|
): () => void
|
|
|
|
$on(event: string | string[], callback: Function): this
|
|
|
|
$once(event: string | string[], callback: Function): this
|
|
|
|
$off(event?: string | string[], callback?: Function): this
|
2022-07-08 07:39:16 +00:00
|
|
|
$nextTick: typeof nextTick
|
2022-05-27 09:26:55 +00:00
|
|
|
$createElement: CreateElement
|
2017-10-06 18:45:14 +00:00
|
|
|
}
|
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
export type CombinedVueInstance<
|
|
|
|
Instance extends Vue,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
PublicMixin = IntersectionMixin<Mixin> & IntersectionMixin<Extends>
|
|
|
|
> = UnwrapNestedRefs<UnwrapMixinsType<PublicMixin, 'D'>> &
|
|
|
|
Data &
|
|
|
|
UnwrapMixinsType<PublicMixin, 'M'> &
|
2022-06-22 01:44:41 +00:00
|
|
|
Methods &
|
2022-08-18 07:56:37 +00:00
|
|
|
ExtractComputedReturns<UnwrapMixinsType<PublicMixin, 'C'>> &
|
2022-06-22 01:44:41 +00:00
|
|
|
Computed &
|
2022-08-18 07:56:37 +00:00
|
|
|
UnwrapMixinsType<PublicMixin, 'P'> &
|
2022-06-22 01:44:41 +00:00
|
|
|
Props &
|
|
|
|
Instance &
|
2022-08-18 07:56:37 +00:00
|
|
|
ShallowUnwrapRef<UnwrapMixinsType<PublicMixin, 'B'>> &
|
2022-06-22 01:44:41 +00:00
|
|
|
(SetupBindings extends void ? {} : SetupBindings)
|
2022-05-27 09:26:55 +00:00
|
|
|
|
|
|
|
export type ExtendedVue<
|
|
|
|
Instance extends Vue,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
2022-05-27 09:26:55 +00:00
|
|
|
> = VueConstructor<
|
2022-08-18 07:56:37 +00:00
|
|
|
CombinedVueInstance<
|
|
|
|
Instance,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
|
|
|
> &
|
2022-05-27 09:26:55 +00:00
|
|
|
Vue
|
|
|
|
>
|
2017-10-06 18:45:14 +00:00
|
|
|
|
2017-12-19 14:34:35 +00:00
|
|
|
export interface VueConfiguration {
|
2022-05-27 09:26:55 +00:00
|
|
|
silent: boolean
|
|
|
|
optionMergeStrategies: any
|
|
|
|
devtools: boolean
|
|
|
|
productionTip: boolean
|
|
|
|
performance: boolean
|
|
|
|
errorHandler(err: Error, vm: Vue, info: string): void
|
|
|
|
warnHandler(msg: string, vm: Vue, trace: string): void
|
|
|
|
ignoredElements: (string | RegExp)[]
|
|
|
|
keyCodes: { [key: string]: number | number[] }
|
|
|
|
async: boolean
|
2017-12-19 14:34:35 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 18:45:14 +00:00
|
|
|
export interface VueConstructor<V extends Vue = Vue> {
|
2022-05-27 09:26:55 +00:00
|
|
|
/**
|
|
|
|
* new with array props
|
|
|
|
*/
|
|
|
|
new <
|
|
|
|
Data = object,
|
|
|
|
Methods = object,
|
|
|
|
Computed = object,
|
|
|
|
PropNames extends string = never,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
2022-05-27 09:26:55 +00:00
|
|
|
>(
|
|
|
|
options?: ThisTypedComponentOptionsWithArrayProps<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
PropNames,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
): CombinedVueInstance<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Record<PropNames, any>,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* new with object props
|
|
|
|
* ideally, the return type should just contain Props,
|
|
|
|
* not Record<keyof Props, any>. But TS requires to have Base constructors
|
|
|
|
* with the same return type.
|
|
|
|
*/
|
|
|
|
new <
|
|
|
|
Data = object,
|
|
|
|
Methods = object,
|
|
|
|
Computed = object,
|
|
|
|
Props = object,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
2022-05-27 09:26:55 +00:00
|
|
|
>(
|
|
|
|
options?: ThisTypedComponentOptionsWithRecordProps<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
): CombinedVueInstance<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Record<keyof Props, any>,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* new with no props
|
|
|
|
*/
|
|
|
|
new (options?: ComponentOptions<V>): CombinedVueInstance<
|
|
|
|
V,
|
|
|
|
object,
|
|
|
|
object,
|
|
|
|
object,
|
|
|
|
Record<keyof object, any>,
|
|
|
|
{}
|
|
|
|
>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* extend with array props
|
|
|
|
*/
|
|
|
|
extend<
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
PropNames extends string = never,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
2022-05-27 09:26:55 +00:00
|
|
|
>(
|
|
|
|
options?: ThisTypedComponentOptionsWithArrayProps<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
PropNames,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
): ExtendedVue<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Record<PropNames, any>,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* extend with object props
|
|
|
|
*/
|
2022-08-18 07:56:37 +00:00
|
|
|
extend<
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
|
|
|
>(
|
2022-05-27 09:26:55 +00:00
|
|
|
options?: ThisTypedComponentOptionsWithRecordProps<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
2022-08-18 07:56:37 +00:00
|
|
|
): ExtendedVue<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
|
|
|
>
|
2022-05-27 09:26:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* extend with functional + array props
|
|
|
|
*/
|
|
|
|
extend<PropNames extends string = never>(
|
|
|
|
definition: FunctionalComponentOptions<Record<PropNames, any>, PropNames[]>
|
|
|
|
): ExtendedVue<V, {}, {}, {}, Record<PropNames, any>, {}>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* extend with functional + object props
|
|
|
|
*/
|
|
|
|
extend<Props>(
|
|
|
|
definition: FunctionalComponentOptions<Props, RecordPropsDefinition<Props>>
|
|
|
|
): ExtendedVue<V, {}, {}, {}, Props, {}>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* extend with no props
|
|
|
|
*/
|
|
|
|
extend(options?: ComponentOptions<V>): ExtendedVue<V, {}, {}, {}, {}, {}>
|
|
|
|
|
|
|
|
nextTick<T>(callback: (this: T) => void, context?: T): void
|
2017-10-06 18:45:14 +00:00
|
|
|
nextTick(): Promise<void>
|
2022-05-27 09:26:55 +00:00
|
|
|
set<T>(object: object, key: string | number, value: T): T
|
|
|
|
set<T>(array: T[], key: number, value: T): T
|
|
|
|
delete(object: object, key: string | number): void
|
|
|
|
delete<T>(array: T[], key: number): void
|
2017-10-06 18:45:14 +00:00
|
|
|
|
|
|
|
directive(
|
|
|
|
id: string,
|
|
|
|
definition?: DirectiveOptions | DirectiveFunction
|
2022-05-27 09:26:55 +00:00
|
|
|
): DirectiveOptions
|
2022-10-11 03:51:05 +00:00
|
|
|
directive(
|
|
|
|
id: string,
|
|
|
|
definition?: Directive
|
|
|
|
): ObjectDirective
|
2022-05-27 09:26:55 +00:00
|
|
|
filter(id: string, definition?: Function): Function
|
|
|
|
|
|
|
|
component(id: string): VueConstructor
|
|
|
|
component<VC extends VueConstructor>(id: string, constructor: VC): VC
|
|
|
|
component<Data, Methods, Computed, Props, SetupBindings>(
|
|
|
|
id: string,
|
|
|
|
definition: AsyncComponent<Data, Methods, Computed, Props>
|
|
|
|
): ExtendedVue<V, Data, Methods, Computed, Props, SetupBindings>
|
|
|
|
component<
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
PropNames extends string = never,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings = {},
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
2022-05-27 09:26:55 +00:00
|
|
|
>(
|
|
|
|
id: string,
|
|
|
|
definition?: ThisTypedComponentOptionsWithArrayProps<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
PropNames,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
): ExtendedVue<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Record<PropNames, any>,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
2022-08-18 07:56:37 +00:00
|
|
|
component<
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
|
|
|
SetupBindings,
|
|
|
|
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,
|
|
|
|
Extends extends ComponentOptionsMixin = ComponentOptionsMixin
|
|
|
|
>(
|
2022-05-27 09:26:55 +00:00
|
|
|
id: string,
|
|
|
|
definition?: ThisTypedComponentOptionsWithRecordProps<
|
|
|
|
V,
|
|
|
|
Data,
|
|
|
|
Methods,
|
|
|
|
Computed,
|
|
|
|
Props,
|
2022-08-18 07:56:37 +00:00
|
|
|
SetupBindings,
|
|
|
|
Mixin,
|
|
|
|
Extends
|
2022-05-27 09:26:55 +00:00
|
|
|
>
|
|
|
|
): ExtendedVue<V, Data, Methods, Computed, Props, SetupBindings>
|
|
|
|
component<PropNames extends string>(
|
|
|
|
id: string,
|
|
|
|
definition: FunctionalComponentOptions<Record<PropNames, any>, PropNames[]>
|
|
|
|
): ExtendedVue<V, {}, {}, {}, Record<PropNames, any>, {}>
|
|
|
|
component<Props>(
|
|
|
|
id: string,
|
|
|
|
definition: FunctionalComponentOptions<Props, RecordPropsDefinition<Props>>
|
|
|
|
): ExtendedVue<V, {}, {}, {}, Props, {}>
|
|
|
|
component(
|
|
|
|
id: string,
|
|
|
|
definition?: ComponentOptions<V>
|
|
|
|
): ExtendedVue<V, {}, {}, {}, {}, {}>
|
2022-07-08 02:39:23 +00:00
|
|
|
component<T extends DefineComponent<any, any, any, any, any, any, any, any>>(
|
|
|
|
id: string,
|
|
|
|
definition?: T
|
|
|
|
): T
|
2022-05-27 09:26:55 +00:00
|
|
|
|
|
|
|
use<T>(
|
|
|
|
plugin: PluginObject<T> | PluginFunction<T>,
|
|
|
|
options?: T
|
|
|
|
): VueConstructor<V>
|
|
|
|
use(
|
|
|
|
plugin: PluginObject<any> | PluginFunction<any>,
|
|
|
|
...options: any[]
|
|
|
|
): VueConstructor<V>
|
|
|
|
mixin(mixin: VueConstructor | ComponentOptions<Vue>): VueConstructor<V>
|
2017-10-06 18:45:14 +00:00
|
|
|
compile(template: string): {
|
2022-05-27 09:26:55 +00:00
|
|
|
render(createElement: typeof Vue.prototype.$createElement): VNode
|
|
|
|
staticRenderFns: (() => VNode)[]
|
|
|
|
}
|
2017-10-06 18:45:14 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
observable<T>(obj: T): T
|
2019-01-11 03:44:55 +00:00
|
|
|
|
2021-03-30 09:46:53 +00:00
|
|
|
util: {
|
2022-05-27 09:26:55 +00:00
|
|
|
warn(msg: string, vm?: InstanceType<VueConstructor>): void
|
|
|
|
}
|
2021-03-30 09:46:53 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
config: VueConfiguration
|
|
|
|
version: string
|
2016-08-23 19:01:30 +00:00
|
|
|
}
|
2017-10-06 18:45:14 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
export const Vue: VueConstructor
|