Home / Class/ Vue Class — vue Architecture

Vue Class — vue Architecture

Architecture documentation for the Vue class in umd.d.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  a4398219_3b03_893a_eee1_a5d3cc5c53b3["Vue"]
  f6fecf35_da6f_5620_3e90_74195c04a07c["umd.d.ts"]
  a4398219_3b03_893a_eee1_a5d3cc5c53b3 -->|defined in| f6fecf35_da6f_5620_3e90_74195c04a07c

Relationship Graph

Source Code

types/umd.d.ts lines 11–62

declare namespace Vue {
  // vue.d.ts
  export type CreateElement = V.CreateElement
  export type VueConstructor<V extends Vue = Vue> = V.VueConstructor<V>

  // options.d.ts
  export type Component<
    Data = DefaultData<never>,
    Methods = DefaultMethods<never>,
    Computed = DefaultComputed,
    Props = DefaultProps
  > = V.Component<Data, Methods, Computed, Props>
  export type AsyncComponent<
    Data = DefaultData<never>,
    Methods = DefaultMethods<never>,
    Computed = DefaultComputed,
    Props = DefaultProps
  > = V.AsyncComponent<Data, Methods, Computed, Props>
  export type ComponentOptions<
    V extends Vue,
    Data = DefaultData<V>,
    Methods = DefaultMethods<V>,
    Computed = DefaultComputed,
    PropsDef = PropsDefinition<DefaultProps>,
    Props = DefaultProps
  > = V.ComponentOptions<V, Data, Methods, Computed, PropsDef, Props>
  export type FunctionalComponentOptions<
    Props = DefaultProps,
    PropDefs = PropsDefinition<Props>
  > = V.FunctionalComponentOptions<Props, PropDefs>
  export type RenderContext<Props = DefaultProps> = V.RenderContext<Props>
  export type PropType<T> = V.PropType<T>
  export type PropOptions<T = any> = V.PropOptions<T>
  export type ComputedOptions<T> = V.ComputedOptions<T>
  export type WatchHandler<T> = V.WatchHandler<T>
  export type WatchOptions = V.WatchOptions
  export type WatchOptionsWithHandler<T> = V.WatchOptionsWithHandler<T>
  export type DirectiveFunction = V.DirectiveFunction
  export type DirectiveOptions = V.DirectiveOptions

  // plugin.d.ts
  export type PluginFunction<T> = V.PluginFunction<T>
  export type PluginObject<T> = V.PluginObject<T>

  // vnode.d.ts
  export type VNodeChildren = V.VNodeChildren
  export type VNodeChildrenArrayContents = V.VNodeChildrenArrayContents
  export type VNode = V.VNode
  export type VNodeComponentOptions = V.VNodeComponentOptions
  export type VNodeData = V.VNodeData
  export type VNodeDirective = V.VNodeDirective
}

Domain

Defined In

Frequently Asked Questions

What is the Vue class?
Vue is a class in the vue codebase, defined in types/umd.d.ts.
Where is Vue defined?
Vue is defined in types/umd.d.ts at line 11.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free