
VUE
吴小雨
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vue读取地址栏参数
vue读取地址栏参数 第一步:创建utils.js文件 export default{ getUrlKey: function (name) { return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) ...转载 2019-04-24 13:58:22 · 3213 阅读 · 0 评论 -
VUE定时器 延迟加载
vue 定时器 延迟加载 var time; //创建定时器 clearTimeout(time) time = setTimeout(function (){ //延迟加载处理的方法 location.href= `/recharge`; }, 500); ...原创 2019-04-24 14:35:45 · 4341 阅读 · 0 评论 -
vue调起微信支付,vue获取openid
vue调起微信支付 vue获取code、openid vue调起微信支付 //微信调起 weixinPay:function(){ if (typeof WeixinJSBridge == "undefined"){//微信浏览器内置对象。参考微信官方文档 if( document.addEventListener ){ d...原创 2019-04-24 14:45:07 · 3804 阅读 · 0 评论