9433cfb9创建于 2025年12月31日历史提交
export const behavior = Behavior({
    methods: {
        set(data, callback) {
            return new Promise(resolve => {
                this.setData(data, () => {
                    if (callback && typeof callback === 'function') {
                        callback.call(this);
                    }
                    resolve();
                });
            });
        }
    }
});