merge
This commit is contained in:
@@ -153,10 +153,8 @@ const vxeTableRef = ref<any>();
|
||||
const tableSearchRef = ref<any>();
|
||||
const searchList = ref<any>(props.searchItems);
|
||||
|
||||
watch(() => props.params, (val: any, oldVal: any) => {
|
||||
if (JSON.stringify(val) !== JSON.stringify(oldVal)) {
|
||||
resetFun(val);
|
||||
}
|
||||
watch(() => props.params, (val: any) => {
|
||||
resetFun(val);
|
||||
}, { deep: true });
|
||||
|
||||
watch(() => props.searchItems, (val) => {
|
||||
|
||||
Reference in New Issue
Block a user