mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
interface VantComponentInstance {
|
|
parent: WechatMiniprogram.Component.TrivialInstance;
|
|
children: WechatMiniprogram.Component.TrivialInstance[];
|
|
index: number;
|
|
$emit: (
|
|
name: string,
|
|
detail?: unknown,
|
|
options?: WechatMiniprogram.Component.TriggerEventOption
|
|
) => void;
|
|
setView: (value: Record<string, any>, callback?: () => void) => void;
|
|
}
|
|
|
|
export type VantComponentOptions<
|
|
Data extends WechatMiniprogram.Component.DataOption,
|
|
Props extends WechatMiniprogram.Component.PropertyOption,
|
|
Methods extends WechatMiniprogram.Component.MethodOption
|
|
> = {
|
|
data?: Data;
|
|
field?: boolean;
|
|
classes?: string[];
|
|
mixins?: string[];
|
|
props?: Props;
|
|
relation?: {
|
|
relations: Record<string, WechatMiniprogram.Component.RelationOption>;
|
|
mixin: string;
|
|
};
|
|
|
|
watch?: Record<string, (...args: any[]) => any>;
|
|
|
|
methods?: Methods;
|
|
|
|
// lifetimes
|
|
beforeCreate?: () => void;
|
|
created?: () => void;
|
|
mounted?: () => void;
|
|
destroyed?: () => void;
|
|
} & ThisType<
|
|
VantComponentInstance &
|
|
WechatMiniprogram.Component.Instance<
|
|
Data & {
|
|
name: string;
|
|
value: any;
|
|
} & Record<string, any>,
|
|
Props,
|
|
Methods
|
|
> &
|
|
Record<string, any>
|
|
>;
|