摘要: 一、配置axios请求响应拦截 在src/utils/request.js import axios from "axios"; //拦截器(请求,响应) //响应 axios.interceptors.response.use(res => { //成功 return res.data; }, e 阅读全文
posted @ 2022-11-25 12:22 默永 阅读(576) 评论(0) 推荐(0) 编辑
摘要: vue无限滚动加载 1、使用防抖完成无限加载 export default { data() { return { menuList: {}, time: null, page: 1, loading: true, }; }, methods: { windowScroll() { this.tim 阅读全文
posted @ 2022-11-25 09:52 默永 阅读(474) 评论(0) 推荐(0) 编辑