Do not use underscore at the beginning of the method

This commit is contained in:
raeno 2018-11-30 18:53:59 +04:00
parent 0c3cd05965
commit 59b84c2a06

View file

@ -235,7 +235,7 @@ const UserSettings = {
if (res.status === 'success') {
this.changedPassword = true
this.changePasswordError = false
this._logout()
this.logout()
} else {
this.changedPassword = false
this.changePasswordError = res.error
@ -245,7 +245,7 @@ const UserSettings = {
activateTab (tabName) {
this.activeTab = tabName
},
_logout () {
logout () {
this.$store.dispatch('logout')
this.$router.replace('/')
}