mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-13 08:03:22 +01:00
25 lines
435 B
JavaScript
25 lines
435 B
JavaScript
import Notifications from '../notifications/notifications.vue'
|
|
|
|
const tabModeDict = {
|
|
mentions: ['mention'],
|
|
'likes+repeats': ['repeat', 'like'],
|
|
follows: ['follow']
|
|
}
|
|
|
|
const Interactions = {
|
|
data () {
|
|
return {
|
|
filterMode: tabModeDict['mentions']
|
|
}
|
|
},
|
|
methods: {
|
|
onModeSwitch (key) {
|
|
this.filterMode = tabModeDict[key]
|
|
}
|
|
},
|
|
components: {
|
|
Notifications
|
|
}
|
|
}
|
|
|
|
export default Interactions
|