logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

element-ui upload 多个文件一次请求上传(Vue精简版)

问题:element-ui 自带el-upload文件上传可以实现多文件上传,但是会触发多次请求。需求:在使用el-upload多文件上传的时候,发送后端一次请求。el-upload在文档中已经有例子限制图片格式和大小,这里不举例。这里使用代码例子:手动上传Html全部代码<template><el-uploadclass="pop-upload"ref="upload"act

#elementui
Vue引用vee-validate插件表单验证(cdn方式引用)

vue引用vee-validate插件表单验证(cdn方式引入)之前用的是webpack打包工具写的项目,后来需求改成静态页面的方式,所以又要把一些引入方式改过来,这就是前端麻烦的地方。网上也有很多npm引入方式的,主要是老版本和新版本vee-validate引起的问题(特别是中文错误提示的引用问题),我这里写一下关于cdn方式引入,中文包配置的问题。一、 CDN方式(官网)<!-- ...

配置babel-plugin-import报错的深坑

用的是antd design vue生成的项目,按着官网的提示一步一步下来,在配置babel-plugin-import时候发生了报错,一直找了很久没有解决问题,问题:项目可以正常运行,当配置babel-plugin-import时的问题引入可以正常运行import Button from “ant-design-vue/lib/button”;import “ant-design-vu...

vue3.x + elementplus组合式api怎么实现this.$confirm和this.$message

vue3.x+element plus 双汉堡组合,绝对是让你吃的饱饱的。用vue2.x 实现的时候大家都会就是element官网例子写的一样1.Options API实现mounted(){this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {confirmButtonText: '确定',cancelButtonText: '取消',type: 'warning

element-ui upload 多个文件一次请求上传(Vue精简版)

问题:element-ui 自带el-upload文件上传可以实现多文件上传,但是会触发多次请求。需求:在使用el-upload多文件上传的时候,发送后端一次请求。el-upload在文档中已经有例子限制图片格式和大小,这里不举例。这里使用代码例子:手动上传Html全部代码<template><el-uploadclass="pop-upload"ref="upload"act

#elementui
vue3.0 深度选择器>>> 和 /deep/ 和 ::v-deep 被弃用‘the >>> and /deep/ combinators have been deprecated‘

vue3.0+element plus 双汉堡组合,谁用谁知道。今天改了一个element 的一个样式还是用原来的/deep/编译的时候发现报了如下的警告[@vue/compiler-sfc] the >>> and /deep/ combinators have been deprecated. Use :deep() instead.[@vue/compiler-sfc] t

vue3.0 深度选择器>>> 和 /deep/ 和 ::v-deep 被弃用‘the >>> and /deep/ combinators have been deprecated‘

vue3.0+element plus 双汉堡组合,谁用谁知道。今天改了一个element 的一个样式还是用原来的/deep/编译的时候发现报了如下的警告[@vue/compiler-sfc] the >>> and /deep/ combinators have been deprecated. Use :deep() instead.[@vue/compiler-sfc] t

到底了