vue
老王爱绿色
做一个快乐的程序员
展开
-
vue将后端传过来的数字 在前端页面显示为文字
this.tableData.forEach(item => { if (item.status == 0) { item.status = “冻结”; } else if (item.status == 1) { item.status = “正常”; } }); 居中的图片: 居中并且带尺寸的图片: 当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。 如何插入一段漂亮的代码片 去...原创 2020-05-06 15:26:45 · 1414 阅读 · 2 评论 -
vue cookie添加,删除,设置过期时间
第三步:调用 this.cookieStore.setCookie(′userName′,res.data,60);//存入用户名,设置有效时间1分钟this.cookieStore.setCookie( 'userName' ,res.data, 60);//存入用户名,设置有效时间1分钟 this.cookieStore.setCookie(′userName′,res.data,60);//存入用户名,设置有效时间1分钟this.cookieStore.delCookie( ‘userName’ ).原创 2020-05-15 19:41:00 · 4584 阅读 · 0 评论