<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import AccountInfoBase from './account-info-base.vue';

import view_tabexppanel from '@widgets/account/infotabexppanel-tabexppanel/infotabexppanel-tabexppanel.vue';
@Component({
    components: {
        view_tabexppanel, 
    },
    beforeRouteEnter: (to: any, from: any, next: any) => {
        next((vm: any) => {
            vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
        });
    },
})
export default class AccountInfo extends AccountInfoBase {

}
</script>