mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
543 B
TypeScript
24 lines
543 B
TypeScript
type Mixins = any[];
|
|
type Relations = object;
|
|
type ExternalClasses = string[];
|
|
|
|
export interface Vue {
|
|
$emit(name: string, detail?: any): void;
|
|
}
|
|
|
|
export type VantComponentOptions<Props, Data, Methods> = {
|
|
data?: Data;
|
|
props?: Props;
|
|
field?: boolean;
|
|
mixins?: Mixins;
|
|
relations?: Relations;
|
|
classes?: ExternalClasses;
|
|
methods?: Methods & ThisType<Vue & Weapp.Component & { data: Data & Props } & Methods>;
|
|
|
|
// lifetimes
|
|
beforeCreate?: () => void;
|
|
created?: () => void;
|
|
mounted?: () => void;
|
|
destroyed?: () => void;
|
|
}
|