摘要: ###vue 杂项 1:三元表达式 2:定时器 //vue 页面定时向后端发送请求进行数据刷新 mounted() { this.timer = setInterval(() => { //在此添加代码段 }, 1000);//1000毫秒后执行 }, beforeDestroy() {//清除定时 阅读全文
posted @ 2021-12-15 15:51 青砖黛瓦 阅读(25) 评论(0) 推荐(0) 编辑
摘要: ##div 样式 div{border-radius:5px} //设置DIV对象盒子四个角5像素圆角效果 div{border-radius:5px 5px 0 0;} //设置DIV对象盒子左上角和右上角5px圆角,其它两个角为0不圆角 div{pointer-events: none;} // 阅读全文
posted @ 2021-12-15 10:03 青砖黛瓦 阅读(71) 评论(0) 推荐(0) 编辑