2020年6月10日
摘要: vue-amap使用 1、下载: npm install vue-amap --save 2、使用:(在 main.js中) import VueAMap from 'vue-amap'; Vue.use(VueAMap); // 初始化vue-amap VueAMap.initAMapApiLoa 阅读全文
posted @ 2020-06-10 22:03 爱IT的小狐狸 阅读(2415) 评论(0) 推荐(0) 编辑
摘要: 使用 elementUI 的步骤条, 效果图如下: 1、安装 elementUI npm i element-ui -S 在 main.js中引入: import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/inde 阅读全文
posted @ 2020-06-10 21:49 爱IT的小狐狸 阅读(7123) 评论(0) 推荐(0) 编辑
摘要: 今天接了甲方爸爸一个需求,要兼容IE浏览器!记录如下 : 我使用 vue-cli 搭建的项目,chorm浏览器一切正常,但是IE浏览器却是一片空白,出现这种问题,是因为缺少 babel-polyfill 处理器的缘故; 1、安装 babel-polyfill npm install babel-po 阅读全文
posted @ 2020-06-10 21:29 爱IT的小狐狸 阅读(1810) 评论(0) 推荐(0) 编辑
  2020年6月4日
摘要: 第一步: 第二步: 第三步: 第四步: 第五步: 第六步: 名字不确定,使用变量: $var$ 阅读全文
posted @ 2020-06-04 13:15 爱IT的小狐狸 阅读(215) 评论(0) 推荐(0) 编辑
  2020年3月18日
摘要: title: 在 XD 和 Axure 中使用 iconfont date: 2020-02-19 18:57:24 tags: https://www.axure.com.cn/product/axhub-icons/ 阅读全文
posted @ 2020-03-18 12:30 爱IT的小狐狸 阅读(858) 评论(0) 推荐(0) 编辑
摘要: title: 查询端口被占用并且结束占用的端口 date: 2020-03-18 12:03:14 tags: 命令控制行 win + R 打开命令行窗口 netstat -ano : 查看所有的端口占用情况 netstat -aon|findstr "8080" : 查询具体端口号占用情况,找出进 阅读全文
posted @ 2020-03-18 12:29 爱IT的小狐狸 阅读(409) 评论(0) 推荐(0) 编辑
摘要: title: js 对象根据 id 删除一条数据 date: 2020-03-18 11:52:38 tags: js function deleteRow (id) { for(let i in obj) { if(obj[i].id == id) { obj.splice(i,1) } } } 阅读全文
posted @ 2020-03-18 12:27 爱IT的小狐狸 阅读(3573) 评论(0) 推荐(0) 编辑
摘要: title: element-ui 组件改变样式 date: 2020-03-18 11:45:55 tags: elementUI elementUI 是第三方组件库,样式修改需要借助样式穿透 .block/deep/.el-pagination margin: 20px auto text-al 阅读全文
posted @ 2020-03-18 12:26 爱IT的小狐狸 阅读(587) 评论(0) 推荐(0) 编辑
摘要: title: element-ui 弹出框在遮罩层下面 date: 2020-03-18 11:37:45 tags: elementUI 给 <el-dialog></el-dialog>添加:modal-append-to-body="false"属性 <el-dialog title="提示" 阅读全文
posted @ 2020-03-18 12:25 爱IT的小狐狸 阅读(2904) 评论(0) 推荐(0) 编辑
摘要: title: css样式穿透 date: 2020-03-18 11:35:43 tags: css stylus的样式穿透 使用 >>> sass和less的样式穿透 使用 /deep/ 外层/deep/第三方组件 { ​ css代码 } 外层>>>第三方组件 { ​ css代码 } 如: .wr 阅读全文
posted @ 2020-03-18 12:20 爱IT的小狐狸 阅读(5090) 评论(0) 推荐(0) 编辑