mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
export default function syncWatch(fn) {
|
|
return {
|
|
handler: fn,
|
|
flush: 'sync',
|
|
};
|
|
}
|