#417: reset tab from the outside

This commit is contained in:
dave 2019-03-03 13:38:48 -05:00
parent 3d30ad1dda
commit 5a0bb29f02
3 changed files with 5 additions and 9 deletions

View File

@ -4,19 +4,12 @@ import './tab_switcher.scss'
export default Vue.component('tab-switcher', {
name: 'TabSwitcher',
props: ['refresh', 'renderOnlyFocused'],
props: ['renderOnlyFocused'],
data () {
return {
active: this.$slots.default.findIndex(_ => _.tag)
}
},
watch: {
$route () {
if (this.refresh) {
this.active = 0
}
}
},
methods: {
activateTab (index) {
return () => {

View File

@ -141,6 +141,9 @@ const UserProfile = {
}
this.cleanUp()
this.startUp()
},
$route () {
this.$refs.tabSwitcher.activateTab(0)()
}
},
components: {

View File

@ -6,7 +6,7 @@
:switcher="true"
:selected="timeline.viewing"
/>
<tab-switcher :refresh="true" :renderOnlyFocused="true">
<tab-switcher :renderOnlyFocused="true" ref="tabSwitcher">
<Timeline
:label="$t('user_card.statuses')"
:disabled="!user.statuses_count"