随笔分类 - Vue
摘要:避免版本升级浏览器缓存文件的问题
阅读全文
摘要:https://www.jb51.net/article/176198.htm
阅读全文
摘要:IE网页被缓存,页面不及时刷新问题解决 IE会对Ajax的get请求进行缓存,进行get请求时,如果两次请求的URL完全相同,浏览器会显示缓存的页面。这时可以在URL中加入参数&t=new Date().getTime()。这样每次访问的URL不同,可以避免网页被缓存,网页即时刷新。
阅读全文
摘要:https://www.jianshu.com/p/b6d7db35b6e4 vue刷新当前页面有挺多种方法,比如 window.location.reload() 或者 this.$router.go(0) 但是这两种方法是会出现一瞬间的白屏,体验不好,所以这里给大家推荐第三种比较好用的刷新页面的
阅读全文
摘要:https://blog.csdn.net/xxkalychen/article/details/102375025
阅读全文
摘要:"editor.formatOnSave": true, https://www.cnblogs.com/vs1435/p/11798670.html ctrl + shift + p > Configure Language Specific Settings > Vue > 编辑文件. { //
阅读全文
摘要:<el-input v-model="scope.row.setMaxScore" :ref="`inputRefs${scope.$index}`" size="small" @blur="changeMax (scope.$index,scope.row)" ></el-input> //鼠标离
阅读全文
摘要:vuex如果分为几个模块,方法是在模块中的话,如果直接在组件中通过this.$store.commit("方法名")是获取不到,必须要在前面加上模块名,如this.$store.commit("模块名/方法名")才可以获取到。 同理:页面中使用状态量this.$store.commit("模块名/状
阅读全文
摘要:https://blog.csdn.net/qq_40954793/article/details/84957643 1,安装 npm install --save nprogress 2,引入,例如要在切换路由,加载页面时实现进度条 router.beforeEach((to, from, nex
阅读全文
摘要:import { inputComponents, selectComponents, layoutComponents, formConf } from '@/components/generator/config' data() { return { inputComponents, leftC
阅读全文
摘要:https://www.cnblogs.com/twodog/p/12134911.html https://blog.csdn.net/crper/article/details/89343617
阅读全文
摘要:https://www.jianshu.com/p/541d8b18cf95
阅读全文
摘要:https://www.cnblogs.com/mmzuo-798/p/12264261.html https://segmentfault.com/a/1190000014571631 (好一点) https://segmentfault.com/a/1190000009543196 https:
阅读全文
摘要:https://gitee.com/newgateway/xdh-form-builder https://gitee.com/mrhj/form-generator https://github.com/dream2023/vue-ele-form-generator
阅读全文
摘要:https://www.cnblogs.com/gitByLegend/p/10840668.html
阅读全文
摘要:1 components: { 2 AddCustomerSchedule(resolve) { 3 require(["../components/AddCustomer"], resolve); 4 }, 5 AddPeopleSchedule(resolve) { 6 require(["..
阅读全文
摘要:<el-form-item label="备注:"> <el-col :span="14"> <el-input class="w" type="textarea" v-model="form.desc"></el-input> </el-col> </el-form-item> <p v-html
阅读全文
摘要:在config/index.js中将{host:localhost}改为{host:127.0.0.1}然后刷新页面就解决了; https://www.cnblogs.com/KoKoLi/p/12119654.html
阅读全文
摘要:https://blog.csdn.net/xhl_james/article/details/104267739
阅读全文