logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue + ts + element下拉加载更多指令

import { DirectiveOptions } from "vue";/*** 对 element-ui 的无限滚动在 el-table 上使用的封装*/import elInfiniteScroll from "element-ui/lib/infinite-scroll";const elScope = "ElInfiniteScroll"; // scope nameconst ms

#vue.js#javascript#html5
vue + ts 错误排除 Argument of type ‘XXX‘ is not assignable to parameter of type ‘Vue‘.

错误:大量出现这种错误,一般由于你重写了mixins中的方法,而你使用private 进行重写导致错误出现。解决方法: private(私有)变成 public(公共)

#bug
ts + axios封装

https.ts文件/*** @author作者* @time2020-9-27 8:47* @titlehttp请求封装* desc 前后端约定接口返回解构规范* {*code: '1',*data:" 请求成功",*message: ""* }*/import { Interceptor } from './interceptor';import { message, Modal } from

到底了