mirror of
https://akkoma.dev/lamp/akkoma-fe.git
synced 2025-05-02 20:44:04 -04:00
remove useless index param of onSwitch
This commit is contained in:
parent
539913673f
commit
cd14566a34
src/components
@ -13,7 +13,7 @@ const Interactions = {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onModeSwitch (index, dataset) {
|
||||
onModeSwitch (dataset) {
|
||||
this.filterMode = tabModeDict[dataset.filter]
|
||||
}
|
||||
},
|
||||
|
@ -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 () {
|
||||
|
@ -20,7 +20,7 @@ export default Vue.component('tab-switcher', {
|
||||
activateTab (index, dataset) {
|
||||
return () => {
|
||||
if (typeof this.onSwitch === 'function') {
|
||||
this.onSwitch.call(null, index, this.$slots.default[index].elm.dataset)
|
||||
this.onSwitch.call(null, this.$slots.default[index].elm.dataset)
|
||||
}
|
||||
this.active = index
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user