mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
18 lines
388 B
TypeScript
18 lines
388 B
TypeScript
export const basic = Behavior({
|
|
methods: {
|
|
$emit(
|
|
name: string,
|
|
detail?: Record<string, unknown>,
|
|
options?: WechatMiniprogram.Component.TriggerEventOption
|
|
) {
|
|
this.triggerEvent(name, detail, options);
|
|
},
|
|
|
|
set(data: Record<string, unknown>) {
|
|
this.setData(data);
|
|
|
|
return new Promise((resolve) => wx.nextTick(resolve));
|
|
},
|
|
},
|
|
});
|