user.ts 182 B

123456789
  1. import { store } from '../index';
  2. export const updateUserInfo = () => {
  3. store.dispatch('updateUserInfo');
  4. };
  5. export const userLogOut = () => {
  6. store.dispatch('userLogOut');
  7. };