摘要:
节流 节流(throttle):当持续触发事件时,保证一定时间段内只调用一次事件处理函数 vue项目 验证码登录--以及倒计时 <template> <button @click="handleCaptcha">{{captcha}}</button> </template> <script> ex 阅读全文
摘要:
axios的get请求: this.axios.get('/list/getPro',{params: {page: 1,size: 10}}).then((res) => { console.log(res) }) 这里“params”必须加,不然参数传递失败 axios的post请求: this 阅读全文
摘要:
动态设置rem (function (doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = f 阅读全文
摘要:
单行超出隐藏省略号 overflow: hidden; text-overflow:ellipsis; white-space: nowrap; 多行超出隐藏省略号 display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-cl 阅读全文