随笔分类 - Vue
摘要:添加背景图片 一种是用前端的静态图片做背景: 只需要在外层div中加入 <div :style="backgroundDiv"> <div> 这个style的东西卸载data中 data() { return { backgroundDiv: { backgroundImage:'url(' + r
阅读全文
摘要:页面登陆状态——cookies cookie操作 this.$cookies.set('key',value,过期时间秒) this.$cookies.get('key') this.$cookies.remove('key') 前端注销 logout(){ //清除cookie this.$coo
阅读全文