UNPKG

@lastboy/vue2

Version:

Fork of Vue 2.7.16 with patched CVE-2024-9506 (regex ReDoS vulnerability)

82 lines (73 loc) 1.87 kB
import { Vue } from './vue' import './umd' import './jsx' export * from './jsx' export default Vue export { CreateElement, VueConstructor } from './vue' export { Component, AsyncComponent, ComponentOptions, FunctionalComponentOptions, RenderContext, PropType, PropOptions, ComputedOptions, WatchHandler, WatchOptions, WatchOptionsWithHandler, DirectiveFunction, DirectiveOptions } from './options' export { PluginFunction, PluginObject } from './plugin' export { VNodeChildren, VNodeChildrenArrayContents, VNode, VNodeComponentOptions, VNodeData, VNodeDirective, ComponentCustomProps } from './vnode' export * from './v3-manual-apis' export * from './v3-generated' // <script setup> helpers export * from './v3-setup-helpers' export { Data } from './common' export { SetupContext } from './v3-setup-context' export { defineComponent, DefineComponent } from './v3-define-component' export { defineAsyncComponent } from './v3-define-async-component' export { SetupFunction, // v2 already has option with same name and it's for a single computed ComputedOptions as ComponentComputedOptions, MethodOptions as ComponentMethodOptions, ComponentPropsOptions, ComponentCustomOptions, ComponentOptionsMixin, ComponentOptionsWithoutProps, ComponentOptionsWithArrayProps, ComponentOptionsWithProps, ComponentOptionsBase } from './v3-component-options' export { ComponentInstance, ComponentPublicInstance, CreateComponentPublicInstance, ComponentCustomProperties } from './v3-component-public-instance' export { // PropType, // PropOptions, ExtractPropTypes, ExtractDefaultPropTypes } from './v3-component-props' export { DirectiveModifiers, DirectiveBinding, DirectiveHook, ObjectDirective, FunctionDirective, Directive } from './v3-directive' export * from './built-in-components'