This commit is contained in:
Albert 2020-09-08 09:18:36 +08:00 committed by GitHub
commit b14cdfc3fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
import Cookies from 'js-cookie'
import { getLanguage } from '@/lang/index'
import router from '@/router'
import getPageTitle from '@/utils/get-page-title'
const state = {
sidebar: {
@ -30,6 +32,7 @@ const mutations = {
state.device = device
},
SET_LANGUAGE: (state, language) => {
document.title = getPageTitle(router.currentRoute.meta.title)
state.language = language
Cookies.set('language', language)
},