mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 12:07:39 +08:00
da64b4a41f
# Conflicts: # dist/vue.common.dev.js # dist/vue.common.prod.js # dist/vue.esm.browser.js # dist/vue.esm.browser.min.js # dist/vue.esm.js # dist/vue.js # dist/vue.min.js # dist/vue.runtime.common.dev.js # dist/vue.runtime.common.prod.js # dist/vue.runtime.esm.js # dist/vue.runtime.js # dist/vue.runtime.min.js # packages/vue-server-renderer/basic.js # packages/vue-server-renderer/build.dev.js # packages/vue-server-renderer/build.prod.js # packages/vue-server-renderer/client-plugin.js # packages/vue-server-renderer/server-plugin.js # packages/vue-template-compiler/browser.js # packages/vue-template-compiler/build.js # packages/weex-template-compiler/build.js # packages/weex-vue-framework/index.js # src/compiler/codegen/index.ts # src/core/components/keep-alive.ts # src/core/instance/lifecycle.js # src/core/instance/render-helpers/render-slot.ts # src/core/instance/state.ts # src/core/observer/watcher.ts # src/core/vdom/helpers/normalize-scoped-slots.ts # src/core/vdom/patch.ts # src/platforms/web/runtime/modules/events.ts # src/platforms/weex/entry-framework.ts # src/server/webpack-plugin/client.js # src/server/webpack-plugin/server.ts # src/server/webpack-plugin/util.ts # yarn.lock
197 lines
5.3 KiB
TypeScript
197 lines
5.3 KiB
TypeScript
import type VNode from "../src/core/vdom/vnode";
|
|
import type Watcher from "../src/core/observer/watcher";
|
|
import { ComponentOptions } from "./options";
|
|
import { ScopedSlotsData, VNodeChildren, VNodeData } from "./vnode";
|
|
|
|
// TODO this should be using the same as /component/
|
|
|
|
declare class Component {
|
|
// constructor information
|
|
static cid: number;
|
|
static options: Record<string, any>;
|
|
// extend
|
|
static extend: (options: Record<string, any>) => Function;
|
|
static superOptions: Record<string, any>;
|
|
static extendOptions: Record<string, any>;
|
|
static sealedOptions: Record<string, any>;
|
|
static super: Component;
|
|
// assets
|
|
static directive: (
|
|
id: string,
|
|
def?: Function | Record<string, any>
|
|
) => Function | Record<string, any> | void;
|
|
static component: (
|
|
id: string,
|
|
def?: Component | Record<string, any>
|
|
) => Component;
|
|
static filter: (id: string, def?: Function) => Function | void;
|
|
// functional context constructor
|
|
static FunctionalRenderContext: Function;
|
|
|
|
// public properties
|
|
$el: any; // so that we can attach __vue__ to it
|
|
$data: Record<string, any>;
|
|
$props: Record<string, any>;
|
|
$options: ComponentOptions;
|
|
$parent: Component | undefined;
|
|
$root: Component;
|
|
$children: Array<Component>;
|
|
$refs: {
|
|
[key: string]: Component | Element | Array<Component | Element> | undefined;
|
|
};
|
|
$slots: { [key: string]: Array<VNode> };
|
|
$scopedSlots: { [key: string]: () => VNodeChildren };
|
|
$vnode: VNode; // the placeholder node for the component in parent's render tree
|
|
$attrs: { [key: string]: string };
|
|
$listeners: Record<string, Function | Array<Function>>;
|
|
$isServer: boolean;
|
|
|
|
// public methods
|
|
$mount: (el?: Element | string, hydrating?: boolean) => Component;
|
|
$forceUpdate: () => void;
|
|
$destroy: () => void;
|
|
$set: <T>(
|
|
target: Record<string, any> | Array<T>,
|
|
key: string | number,
|
|
val: T
|
|
) => T;
|
|
$delete: <T>(
|
|
target: Record<string, any> | Array<T>,
|
|
key: string | number
|
|
) => void;
|
|
$watch: (
|
|
expOrFn: string | Function,
|
|
cb: Function,
|
|
options?: Record<string, any>
|
|
) => Function;
|
|
$on: (event: string | Array<string>, fn: Function) => Component;
|
|
$once: (event: string, fn: Function) => Component;
|
|
$off: (event?: string | Array<string>, fn?: Function) => Component;
|
|
$emit: (event: string, ...args: Array<any>) => Component;
|
|
$nextTick: (fn: Function) => void | Promise<any>;
|
|
$createElement: (
|
|
tag?: string | Component,
|
|
data?: Record<string, any>,
|
|
children?: VNodeChildren
|
|
) => VNode;
|
|
|
|
// private properties
|
|
_uid: number | string;
|
|
_name: string; // this only exists in dev mode
|
|
_isVue: true;
|
|
_self: Component;
|
|
_renderProxy: Component;
|
|
_renderContext?: Component;
|
|
_watcher: Watcher | null;
|
|
_watchers: Array<Watcher>;
|
|
_computedWatchers: { [key: string]: Watcher };
|
|
_data: Record<string, any>;
|
|
_props: Record<string, any>;
|
|
_events: Record<string, any>;
|
|
_inactive: boolean | null;
|
|
_directInactive: boolean;
|
|
_isMounted: boolean;
|
|
_isDestroyed: boolean;
|
|
_isBeingDestroyed: boolean;
|
|
_vnode?: VNode | null; // self root node
|
|
_staticTrees?: Array<VNode> | null; // v-once cached trees
|
|
_hasHookEvent: boolean;
|
|
_provided?: Record<string, any>;
|
|
// _virtualComponents?: { [key: string]: Component };
|
|
|
|
// private methods
|
|
|
|
// lifecycle
|
|
_init: Function;
|
|
_mount: (el?: Element | void, hydrating?: boolean) => Component;
|
|
_update: (vnode: VNode, hydrating?: boolean) => void;
|
|
|
|
// rendering
|
|
_render: () => VNode;
|
|
|
|
__patch__: (
|
|
a: Element | VNode | void | null,
|
|
b: VNode | null,
|
|
hydrating?: boolean,
|
|
removeOnly?: boolean,
|
|
parentElm?: any,
|
|
refElm?: any
|
|
) => any;
|
|
|
|
// createElement
|
|
|
|
// _c is internal that accepts `normalizationType` optimization hint
|
|
_c: (
|
|
vnode?: VNode,
|
|
data?: VNodeData,
|
|
children?: VNodeChildren,
|
|
normalizationType?: number
|
|
) => VNode | void;
|
|
|
|
// renderStatic
|
|
_m: (index: number, isInFor?: boolean) => VNode | VNodeChildren;
|
|
// markOnce
|
|
_o: (
|
|
vnode: VNode | Array<VNode>,
|
|
index: number,
|
|
key: string
|
|
) => VNode | VNodeChildren;
|
|
// toString
|
|
_s: (value: any) => string;
|
|
// text to VNode
|
|
_v: (value: string | number) => VNode;
|
|
// toNumber
|
|
_n: (value: string) => number | string;
|
|
// empty vnode
|
|
_e: () => VNode;
|
|
// loose equal
|
|
_q: (a: any, b: any) => boolean;
|
|
// loose indexOf
|
|
_i: (arr: Array<any>, val: any) => number;
|
|
// resolveFilter
|
|
_f: (id: string) => Function;
|
|
// renderList
|
|
_l: (val: any, render: Function) => Array<VNode> | null;
|
|
// renderSlot
|
|
_t: (
|
|
name: string,
|
|
fallback?: Array<VNode>,
|
|
props?: Record<string, any>
|
|
) => Array<VNode> | null;
|
|
// apply v-bind object
|
|
_b: (
|
|
data: any,
|
|
tag: string,
|
|
value: any,
|
|
asProp: boolean,
|
|
isSync?: boolean
|
|
) => VNodeData;
|
|
// apply v-on object
|
|
_g: (data: any, value: any) => VNodeData;
|
|
// check custom keyCode
|
|
_k: (
|
|
eventKeyCode: number,
|
|
key: string,
|
|
builtInAlias?: number | Array<number>,
|
|
eventKeyName?: string
|
|
) => boolean | null;
|
|
// resolve scoped slots
|
|
_u: (
|
|
scopedSlots: ScopedSlotsData,
|
|
res?: Record<string, any>
|
|
) => { [key: string]: Function };
|
|
|
|
// SSR specific
|
|
_ssrNode: Function;
|
|
_ssrList: Function;
|
|
_ssrEscape: Function;
|
|
_ssrAttr: Function;
|
|
_ssrAttrs: Function;
|
|
_ssrDOMProps: Function;
|
|
_ssrClass: Function;
|
|
_ssrStyle: Function;
|
|
|
|
// allow dynamic method registration
|
|
[key: string]: any;
|
|
}
|