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