chore: eslint 检查报错调整
This commit is contained in:
parent
3060fe5add
commit
98aa4677b3
|
@ -304,6 +304,7 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
const storageItem = props.storageList.find((item) => item.id === props.activeFolder);
|
const storageItem = props.storageList.find((item) => item.id === props.activeFolder);
|
||||||
|
// eslint-disable-next-line vue/no-side-effects-in-computed-properties
|
||||||
storageItemCount.value = props.storageList.reduce((prev, item) => prev + item.count, 0);
|
storageItemCount.value = props.storageList.reduce((prev, item) => prev + item.count, 0);
|
||||||
if (props.activeFolder === 'all') {
|
if (props.activeFolder === 'all') {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -71,6 +71,7 @@
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
});
|
});
|
||||||
|
|
||||||
// 检测在横线之后是否有action
|
// 检测在横线之后是否有action
|
||||||
|
@ -87,6 +88,7 @@
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
});
|
});
|
||||||
|
|
||||||
function selectHandler(value: SelectedValue) {
|
function selectHandler(value: SelectedValue) {
|
||||||
|
|
Loading…
Reference in New Issue