摘要: <el-progress type="circle" :percentage="item.percent" :color="item.color" :height="80" :width="80" :stroke-width="3" class="my-progress" /> .my-progre 阅读全文
posted @ 2021-03-08 17:11 小甜橘 阅读(1170) 评论(0) 推荐(0) 编辑
摘要: const COLOR = [ ['#3ECEAE','#72E9D7'], ['#F18C5F','#F9C098'], ['#408AF8','#74BEFC'] ]; series: [ { name: "测试", type: "bar", data: this.chartValue, bar 阅读全文
posted @ 2021-03-08 15:09 小甜橘 阅读(1161) 评论(0) 推荐(0) 编辑
摘要: 1、安装lib-flexible npm install lib-flexible --save 2、在项目入口文件main.js中引入 import 'lib-flexible' 以上配置,可以解决移动端的适配。默认将屏幕划分为10等分,如果设计稿尺寸为1920px, 则 1rem = (1920 阅读全文
posted @ 2021-03-07 13:44 小甜橘 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 阮一峰的博客 大屏上的全屏页面自适应 vue-cli3中PC端大屏自适应 vue中使用lib-flexible和amfe-flexible 阅读全文
posted @ 2021-03-05 10:33 小甜橘 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 使用element form 表单写注册页的时候,input总会默认填写浏览器之前保存的账号密码 在input属性中加上 auto-complete="new-password",就可以不自动填充 阅读全文
posted @ 2021-03-05 10:19 小甜橘 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 目录: 1、ESlint配置eslintrc.js文件 2、vscode格式化结尾不加逗号 3、vscode配置vue模板 4、eslint和vscode格式化冲突时的解决方案 1.ESlint配置eslintrc.js文件 默认eslint规则: 代码末尾不能加分号 代码中不能存在多行空行 tab 阅读全文
posted @ 2021-02-27 15:39 小甜橘 阅读(1287) 评论(0) 推荐(0) 编辑
摘要: element中利用tooltip实现文字超出框悬浮显示 自定义指令 阅读全文
posted @ 2020-11-16 16:02 小甜橘 阅读(467) 评论(0) 推荐(0) 编辑
摘要: <el-upload list-type="picture-card" accept=".jpg, .jpeg, .png, .gif" :action="UPLOAD_URL" //上传的地址 :data="uploadData" // 上传时附带的额外参数 :file-list="fileLis 阅读全文
posted @ 2020-10-26 18:13 小甜橘 阅读(216) 评论(0) 推荐(0) 编辑
摘要: <img :src="item.user_pic" alt :onerror="defaultImg"> defaultImg: 'this.src="' + require("xxx.png") + '"' "user_pic": "http://xxx.jpg"(后台返回的) 阅读全文
posted @ 2020-10-23 12:58 小甜橘 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 安装完之后 将文件放在wwww目录下,浏览器输入locakhost就可以访问到www文件夹下面的项目文件 但是上面的方法只能本机访问,我们要设置下允许同一局域网下的手机或其他设备使用。点击图标 — Apache — httpd.conf 修改如下 阅读全文
posted @ 2020-04-02 10:22 小甜橘 阅读(379) 评论(0) 推荐(0) 编辑
返回顶部