上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: mac系统 安装flutter 分三步: 1. 安装flutter sdk 2. flutter环境变量配置 3. 建立flutter应用 Flutter SDK下载 打开终端执行命令 git clone -b beta https://github.com/flutter/flutter.git  阅读全文
posted @ 2019-05-10 13:50 Mr_R 阅读(3072) 评论(0) 推荐(0) 编辑
摘要: 出现原因: element-ui中 el-tab绑定的值在切换tab时会自动修改 而activeTag是从store中获取的值,不能直接修改 要添加给它绑定上set <el-tabs class="tags" v-model="activeTag" type="card" closable @tab 阅读全文
posted @ 2019-05-10 11:04 Mr_R 阅读(1223) 评论(2) 推荐(1) 编辑
摘要: 1.JSON.stringify JSON.parse方法实现 let deepClone = function (obj) { return JSON.parse(JSON.stringify(obj)); }; 2.用for…in实现遍历和复制 function deepClone(obj) { 阅读全文
posted @ 2019-05-08 10:50 Mr_R 阅读(736) 评论(0) 推荐(0) 编辑
摘要: 保存: 在mac中自动保存git的用户名和密码很简单,只需要在终端命令行中输入下面的命令就是: 然后在git 操作中 只要输入一次账号名和密码 ,在之后的操作中 就不需要再次输入了 删除: 解决方案:用钥匙串去更改用户名和密码 第一步:找到你的钥匙串的位置 应用程序 实用工具 双击钥匙串 右上角搜索 阅读全文
posted @ 2019-04-19 10:15 Mr_R 阅读(11090) 评论(0) 推荐(0) 编辑
摘要: keep-alive keep-alive是Vue提供的一个抽象组件,用来对组件进行缓存,从而节省性能,由于是一个抽象组件,所以在v页面渲染完毕后不会被渲染成一个DOM元素 <keep-alive> <loading></loading> </keep-laive> 当组件在keep-alive内被 阅读全文
posted @ 2019-04-18 14:40 Mr_R 阅读(9429) 评论(0) 推荐(1) 编辑
摘要: 解决思路: 当键盘弹起时隐藏掉按钮,键盘隐藏时按钮显示 监测键盘是否弹起(浏览器页面是否发生变化) 代码: 1、定义一个底部按钮 <div class="returnbtn" v-show="isOriginHei" :class="{active: canSubmit}" v-on:click=" 阅读全文
posted @ 2019-04-12 10:41 Mr_R 阅读(2054) 评论(0) 推荐(0) 编辑
摘要: 打包压缩后 scp b.zip root@xx.xx.xxx.xx:/home/www/xxx/xxx/ //b.zip压缩包名 root@后服务器地址 输入密码 上传 完成后: root@xxx.xxx.xxx.xxx 输入密码 进入服务器 cd /home/www/xxx/xxx/ 进入放置的文 阅读全文
posted @ 2019-04-04 11:29 Mr_R 阅读(864) 评论(0) 推荐(0) 编辑
摘要: // 判断是否微信浏览器还是支付宝浏览器 var ua = window.navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == 'micromessenger'){ // console.log('微信'+ua) 阅读全文
posted @ 2019-04-03 17:32 Mr_R 阅读(1210) 评论(0) 推荐(0) 编辑
摘要: 淘宝的样式初始化: body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; } body, button, input, s... 阅读全文
posted @ 2019-03-20 14:22 Mr_R 阅读(616) 评论(0) 推荐(0) 编辑
摘要: -webkit-appearance:none; 阅读全文
posted @ 2019-03-20 09:27 Mr_R 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页