diff options
| author | taehoon <th.dev91@gmail.com> | 2019-08-09 23:48:33 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-08-15 13:25:38 -0400 |
| commit | 9dd9ba0205cde312f78c510188c98f2be5cf6b2c (patch) | |
| tree | 7bd2cb64c89f3b06742cf837e368ce66abfc4494 /src | |
| parent | df3e80b7c3fc91cbd62764be467d1dfe28b4b299 (diff) | |
remove unused param
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/tab_switcher/tab_switcher.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/tab_switcher/tab_switcher.js b/src/components/tab_switcher/tab_switcher.js index b26040ff..e0d4572c 100644 --- a/src/components/tab_switcher/tab_switcher.js +++ b/src/components/tab_switcher/tab_switcher.js @@ -17,7 +17,7 @@ export default Vue.component('tab-switcher', { } }, methods: { - activateTab (index, dataset) { + activateTab (index) { return () => { if (typeof this.onSwitch === 'function') { this.onSwitch.call(null, this.$slots.default[index].key) |
