- 博客(9)
- 收藏
- 关注
原创 压缩图片到指定的大小
npm i image-conversion --saveimport *as imageConversion from ‘image-conversion’beforeAvatarUpload(file,fileList){if(/^image/.test(file.type) && file.size > 500) {new promise((resolve) => {imageConversion.compressAccurately(file,500).the
2021-05-11 09:44:41 170
原创 获取当月有多少天
getDaysByMonth(year,month) {return new Date(year,month,0).getDate()}
2021-04-15 14:03:32 274
原创 获取当月第一天是星期几
getFirstDayByMonths(year,month) {return new Date(year,month,1),getDay();}
2021-04-15 13:58:54 1138
原创 处理v-html存在的xss攻击
处理v-html存在的xss攻击处理v-html存在的xss攻击<div v-html='$xss(test)'></div>
2021-04-09 09:15:10 372
原创 使用element-ui的时候控制台报TypeError: Cannot read property 'disabled' of null错
1:当时用el-dropdown的时候没有使用子元素el-dropdown-menu就会报错,报如下图错误2:正确的使用方法就是没有子元素也要加上子元素el-dropdown-menu,就不会报如上图错误了。...
2019-11-01 17:15:01 5827 2
原创 vue 路由传递对象参数,刷新页面后参数丢失
在用vue做项目的时候,发现在新页面刷新后,上一页面带过来的参数会丢失。1:下面是错误的传对象参数方法:2:下面是正确的传对象参数方法, vue-router 传对象需要JSON.stringify()转化,这样刷新浏览器就不会丢失携带的参数了。:...
2019-10-31 13:40:29 2559 3
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人