chore: improve filter (#8262)

This commit is contained in:
neverland
2021-03-04 11:27:39 +08:00
committed by GitHub
parent 9fd71923f9
commit 12be46fad8
10 changed files with 31 additions and 37 deletions

View File

@@ -137,12 +137,12 @@ export default createComponent({
watch(columns, updateColumnValue);
watch(
[
() => props.filter,
() => props.minHour,
() => props.maxHour,
() => props.minMinute,
() => props.maxMinute,
() => [
props.filter,
props.minHour,
props.maxHour,
props.minMinute,
props.maxMinute,
],
updateInnerValue
);