随笔分类 -  Vue

上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要:https://www.jianshu.com/p/63f09651724c https://www.bbsmax.com/A/kjdwlwrBzN/ https://blog.csdn.net/qq_42043377/article/details/82894351 https://www.bbs 阅读全文
posted @ 2020-04-24 14:16 ThisCall 阅读(92) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/4b55d312d297 阅读全文
posted @ 2020-04-24 14:04 ThisCall 阅读(105) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/b323dadfeda9 阅读全文
posted @ 2020-04-24 13:56 ThisCall 阅读(74) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/149965.htm http://www.luyixian.cn/javascript_show_165809.aspx 阅读全文
posted @ 2020-04-24 11:45 ThisCall 阅读(141) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/ljc20090913/article/details/81662690 减少获取dom节点的消耗了 https://www.cnblogs.com/xumqfaith/p/7743387.html https://www.jianshu.com/p/b8 阅读全文
posted @ 2020-04-23 13:48 ThisCall 阅读(2785) 评论(0) 推荐(0) 编辑
摘要:例子 vue中eventbus被多次触发(vue中使用eventbus踩过的坑)【bus.$on事件被多次绑定】 问题描述:只要页面没有强制刷新,存在组件切换,bus.$on方法会被多次绑定,造成事件多次触发 触发bus.$on中绑定的方法.png bus.$on多次绑定.png 解决办法一:在每次 阅读全文
posted @ 2020-04-23 11:27 ThisCall 阅读(1129) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/TurtleOrange/article/details/89518721 https://www.jianshu.com/p/0f6fb67b3e3e v-for和v-if不应该一起使用,必要情况下应该替换成computed属性。 原因:v-for比v- 阅读全文
posted @ 2020-04-22 11:58 ThisCall 阅读(527) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/744691eeb8f0 阅读全文
posted @ 2020-04-19 14:00 ThisCall 阅读(569) 评论(0) 推荐(0) 编辑
摘要:新版vue没有build文件夹,需要配置 vue.config.js 文件 https://www.jianshu.com/p/b358a91bdf2d https://www.cnblogs.com/lxz123/p/12541601.html 阅读全文
posted @ 2020-04-18 15:59 ThisCall 阅读(1332) 评论(0) 推荐(1) 编辑
摘要:https://blog.csdn.net/tangkthh/article/details/88787714 https://www.cnblogs.com/fxwoniu/p/11896836.html 阅读全文
posted @ 2020-04-18 13:51 ThisCall 阅读(1073) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/fbcad30031c2 https://www.jb51.net/article/146483.htm 阅读全文
posted @ 2020-04-18 12:25 ThisCall 阅读(540) 评论(0) 推荐(0) 编辑
摘要:https://segmentfault.com/a/1190000017462244 (亲测) https://www.cnblogs.com/woniubushinide/p/10775759.html 结合这个 https://blog.csdn.net/mianyao1004/article 阅读全文
posted @ 2020-04-17 18:31 ThisCall 阅读(538) 评论(0) 推荐(0) 编辑
摘要:module.exports = { NODE_ENV: '"production"', //API_KEY:'"https://app-verify.iwonly.com/"',//你们的线上接口是否有统一的接口前缀,测试环境, API_ROOT:'"https://app.iwonly.com/ 阅读全文
posted @ 2020-04-17 17:51 ThisCall 阅读(2173) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/tang422622/article/details/86534587 https://www.cnblogs.com/zmyxixihaha/p/11340450.html https://www.jianshu.com/p/30262d71d230 阅读全文
posted @ 2020-04-14 19:35 ThisCall 阅读(282) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/56e64f028abb 阅读全文
posted @ 2020-04-11 16:09 ThisCall 阅读(248) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/liang_wf/article/details/102562249 npm install v-viewer <template> <div id="app"> <div class="images" v-viewer="{movable: false} 阅读全文
posted @ 2020-04-09 18:24 ThisCall 阅读(612) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_38337245/article/details/95065501 https://www.cnblogs.com/yinn/p/9056731.html 阅读全文
posted @ 2020-04-08 13:26 ThisCall 阅读(8288) 评论(0) 推荐(0) 编辑
摘要:created:是在模板渲染成HTML前调用的,此时data已经准备完毕,el仍是undefined,因为没有渲染成HTML,所以不能操作dom节点,它主要用来初始化一些数据; 即使created中的方法没有执行完,mounted也会被调用! mounted:是在模板渲染成HTML之后调用的,此时d 阅读全文
posted @ 2020-04-08 11:45 ThisCall 阅读(397) 评论(0) 推荐(0) 编辑
摘要:vue中使用go()和back()两种返回上一页的区别 https://blog.csdn.net/qq_42618566/article/details/91045282展开go(-1): 原页面表单中的内容会丢失;history.go(-1):后退+刷新; history.go(1) :前进 b 阅读全文
posted @ 2020-04-08 10:52 ThisCall 阅读(3002) 评论(0) 推荐(0) 编辑
摘要:是因为组件没有注册到vue的dom中, components: { BrandSlider2 }, 阅读全文
posted @ 2020-04-05 18:51 ThisCall 阅读(941) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页