摘要: 图片裁剪插件 1.vue-img-cutter 安装:npm i vue-img-cutter -S 插件的使用: <template> <div> <ImgCutter label="选择图片" :isModal="true" :boxWidth="800" :boxHeight="500" :c 阅读全文
posted @ 2020-12-23 17:07 一寒梅立雪中 阅读(508) 评论(0) 推荐(0)
摘要: Thumbnails相关方法记录是简单的使用 jar包: <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator --> <dependency> <groupId>net.coobird</groupId> <artifa 阅读全文
posted @ 2020-12-22 16:45 一寒梅立雪中 阅读(142) 评论(0) 推荐(0)
摘要: ###vue子组件继承父组件scoped样式的方法: 1.使用:/deep/ 2.使用:>>> ###vue中引用静态图片,文件等 文件目录一般放置在assets下:选择合适的方法引用 1.@ 2.~@ 3.require('@/...'); 阅读全文
posted @ 2020-12-18 14:19 一寒梅立雪中 阅读(104) 评论(0) 推荐(0)
摘要: vue下axios的使用 一、vue项目的前期配置 1.安装npm i axios -S 2.在main.js下全局引入 import axios from "axios"; 二、封装axios实例 —— request.js // 导入axios import axios from 'axios' 阅读全文
posted @ 2020-12-17 16:49 一寒梅立雪中 阅读(174) 评论(0) 推荐(0)
摘要: base64数据图片处理 1.spring boot post请求数据过大: server: tomcat: max-http-form-post-size: -1 spring: http: multipart: max-file-size: -1 max-request-size: -1 2.b 阅读全文
posted @ 2020-12-16 09:08 一寒梅立雪中 阅读(289) 评论(0) 推荐(0)
摘要: vue插件 1.图片滑块验证: "vue-monoplasty-slide-verify": "^1.1.3" 1.2使用示例: <template> <div> <!-- //el-dialog element-ui中引入的组件 对话框 //visible.sync属性了解于elmentui中对话 阅读全文
posted @ 2020-12-16 09:06 一寒梅立雪中 阅读(114) 评论(0) 推荐(0)