公告板
版本库
filestore
活动
搜索
登录
main
/
lmk-shop-web
绿满筐商城sweb-vue服务
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
调整上一个商品的物流信息会带入到下一个商品中
peng
4 天以前
366b64ae257e883605e8347f20cc8a5dfa0863d3
[lmk-shop-web.git]
/
seller
/
src
/
store
/
modules
/
user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Cookies from 'js-cookie';
const user = {
state: {},
mutations: {
logout () {
Cookies.remove('userInfoSeller');
// 清空打开的页面等数据
localStorage.clear();
}
}
};
export default user;