You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
bililive_webapp/src/store.ts

16 lines
286 B

import {createStore} from "vuex";
export const store = createStore({
state: () => ({
user: {
email: '1029559041@qq.com'
}
}),
mutations: {
setUser(state, user) {
// @ts-ignore
state.user = user
}
}
})