随笔分类 -  vue

摘要:右键事件 contextmenu 阅读全文
posted @ 2019-09-09 11:50 羽鱼 阅读(189) 评论(0) 推荐(0) 编辑
摘要:.el-dialog { position: absolute; top: 50%; left: 50%; margin: 0 !important; transform: translate(-50%, -50%); max-height: calc(100% - 30px); max-width 阅读全文
posted @ 2019-06-12 15:55 羽鱼 阅读(4665) 评论(0) 推荐(0) 编辑
摘要:Text2Html(str) { if (str == null) { return ""; } else if (str.length == 0) { return ""; } str =str.replace(new RegExp("\n","gm"),"<br />") str =str.re 阅读全文
posted @ 2019-05-29 15:56 羽鱼 阅读(919) 评论(0) 推荐(0) 编辑
摘要:"vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "auto" }, "prettyhtml": { "printWidth": 100, "singleQuote": false, 阅读全文
posted @ 2019-05-27 16:44 羽鱼 阅读(3181) 评论(0) 推荐(0) 编辑
摘要:<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"> 阅读全文
posted @ 2019-05-24 11:36 羽鱼 阅读(1161) 评论(0) 推荐(0) 编辑
摘要:IOS在点击输入框弹出键盘 键盘回缩 后 定位没有相应改变 还有 textarea 也会弹出键盘 $("input").blur(function() { console.log("失去焦点"); window.scrollTo(0, 0); }); let input = document.get 阅读全文
posted @ 2019-05-24 11:28 羽鱼 阅读(2032) 评论(0) 推荐(0) 编辑
摘要:关闭eslint 直接注释掉package.json文件中eslint的配置就可以了(以下是vue-cli的默认配置) "eslintConfig": { "root": true,////此项是用来告诉eslint找当前配置文件不能往父级查找 "env": { "node": true//此项指定 阅读全文
posted @ 2019-05-22 14:45 羽鱼 阅读(40002) 评论(1) 推荐(0) 编辑
摘要:keep-alive vue组件缓存避免多次加载相应的组件 阅读全文
posted @ 2019-05-10 16:56 羽鱼 阅读(923) 评论(0) 推荐(0) 编辑
摘要:在网址后面/#/前面加个随机数 阅读全文
posted @ 2019-05-07 16:38 羽鱼 阅读(417) 评论(0) 推荐(0) 编辑
摘要:http://www.php.cn/js-tutorial-387360.html 阅读全文
posted @ 2019-05-06 17:46 羽鱼 阅读(861) 评论(0) 推荐(0) 编辑
摘要:function allWeeks(now_month) { //获取每个月的周 let week_array = []; let today = new Date(Date.parse(now_month)); let year = today.getFullYear(); let month = 阅读全文
posted @ 2019-05-06 17:26 羽鱼 阅读(147) 评论(0) 推荐(0) 编辑
摘要:来源:https://www.cnblogs.com/amunamuna/p/8997533.html 当使用FastClick 时,input框在ios上点击输入调取手机自带输入键盘不灵敏,有时候甚至点不出来。而安卓上完全没问题。这个原因是因为FastClick的点击穿透。解决方法: FastCl 阅读全文
posted @ 2019-05-06 11:31 羽鱼 阅读(1638) 评论(0) 推荐(0) 编辑
摘要:vue 获取时间对象 需通过 事件的 event 对象 的 currentTarget @click="onClick( $event)" onClick(e){ //jquery $(e.currentTarget) console.log(e) // e.target 是你当前点击的元素 // 阅读全文
posted @ 2019-05-05 17:12 羽鱼 阅读(5458) 评论(0) 推荐(0) 编辑
摘要:微信 vue 跳转到外部 后回跳 ,比如登陆 授权操作 。需要 路由 先跳转到一个中间页面 后再跳转到授权服务器!而不能跳转前的页面与回跳后的页面相同 不然回跳可能会出现空白 路由不解析。 阅读全文
posted @ 2019-04-30 16:44 羽鱼 阅读(2819) 评论(0) 推荐(0) 编辑
摘要:第一个handler:其值是一个回调函数。即监听到变化时应该执行的函数。 注意:当观察的数据为对象或数组时,curVal和oldVal是相等的,因为这两个形参指向的是同一个数据对象 第二个是deep:深度监听,其值是true或false;如果值是对象 才能监听对象的 属性变换第三个是immediat 阅读全文
posted @ 2019-04-23 17:18 羽鱼 阅读(149) 评论(0) 推荐(0) 编辑
摘要:const webpack = require('webpack')module.exports = { // baseUrl type:{string} default:'/' // 将部署应用程序的基本URL // 将部署应用程序的基本URL。 // 默认情况下,Vue CLI假设您的应用程序将 阅读全文
posted @ 2019-01-10 08:40 羽鱼 阅读(147) 评论(0) 推荐(0) 编辑
摘要:axios 设置 withCredentials :true axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded' 如果 Content-Type是 application/x-www-fo 阅读全文
posted @ 2018-09-26 16:23 羽鱼 阅读(557) 评论(0) 推荐(0) 编辑