mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export const behavior = Behavior({
|
|
methods: {
|
|
set(data: object, callback: Function) {
|
|
this.setData(data, callback);
|
|
|
|
return new Promise(resolve => wx.nextTick(resolve));
|
|
}
|
|
}
|
|
});
|