diff options
| author | taehoon <th.dev91@gmail.com> | 2019-08-09 23:28:46 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-08-15 13:25:38 -0400 |
| commit | cd14566a34013e65b603a71208d058871e992956 (patch) | |
| tree | 88303c63b20a23bb5dc1a72d93a6738d38ebb47c /src/components/search/search.js | |
| parent | 539913673fc854facc9d1f28017434d367e1cd3d (diff) | |
remove useless index param of onSwitch
Diffstat (limited to 'src/components/search/search.js')
| -rw-r--r-- | src/components/search/search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/search/search.js b/src/components/search/search.js index b434e127..37940f34 100644 --- a/src/components/search/search.js +++ b/src/components/search/search.js @@ -75,7 +75,7 @@ const Search = { const length = this[tabName].length return length === 0 ? '' : ` (${length})` }, - onResultTabSwitch (_index, dataset) { + onResultTabSwitch (dataset) { this.currenResultTab = dataset.filter }, getActiveTab () { |
