a324a01ca41692326a3db4a057ba6915f7ea14a4be25096ccc34d9315fd41b0eede73fbb8b7c15e9f6af7e8a105f325a517ecc04635cc40302c614abdf4eff 600 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. import { Vue } from "./vue";
  2. import "./umd";
  3. export default Vue;
  4. export {
  5. CreateElement,
  6. VueConstructor
  7. } from "./vue";
  8. export {
  9. Component,
  10. AsyncComponent,
  11. ComponentOptions,
  12. FunctionalComponentOptions,
  13. RenderContext,
  14. PropType,
  15. PropOptions,
  16. ComputedOptions,
  17. WatchHandler,
  18. WatchOptions,
  19. WatchOptionsWithHandler,
  20. DirectiveFunction,
  21. DirectiveOptions
  22. } from "./options";
  23. export {
  24. PluginFunction,
  25. PluginObject
  26. } from "./plugin";
  27. export {
  28. VNodeChildren,
  29. VNodeChildrenArrayContents,
  30. VNode,
  31. VNodeComponentOptions,
  32. VNodeData,
  33. VNodeDirective
  34. } from "./vnode";