VUE
周二也被占用
学无止境
展开
-
axios请求失败,TypeError: Cannot set property 'article' of undefined vue
调试vue程序,使用axios请求后台报错,源码如下:getGoodsList () { axios.get('/v1/random') .then(function (response) { this.article = 'sss' console.log(response.title) con...原创 2018-05-26 07:13:18 · 4907 阅读 · 2 评论 -
Vue +elementui表格组件路由切换时页面内容没有重新加载
elementui表格组件内容已经更新,但是再次进入含表格vue路由页面时,页面内容不会刷新问题原因:在组件mounted钩子中调用的刷新页面内容,但测试发现这个钩子没有被调用。后来发现index.vue中使用了<keep-alive>:<keep-alive> <router-view></router-view></ke...原创 2018-06-09 21:02:31 · 9448 阅读 · 0 评论 -
expected indentation of 0 spaces but found 2 . vue eslint规则和idea冲突
使用vue创建工程时,在vue页面里,用到script时,idea默认会缩进两个空格,而eslint校验时期望,script下的首行不要缩进。 因此会提示如下报错:expected indentation of 0 spaces but found 2 . 解决办法: 1、不校验缩进,在rule里增加如下规则:'rules': { 'indent': 'off' }...原创 2018-07-15 07:02:51 · 37952 阅读 · 0 评论 -
Vue - webpack 打包兼容 360 浏览器和 IE 浏览器
转:https://blog.csdn.net/lablenet/article/details/74536307转载 2018-11-06 16:42:38 · 768 阅读 · 0 评论 -
webpack build 在windows和Linux下build需注意路径的大小写
如:route/index.js实际路径:/page/WanHG/index.vue在index.js中写法const ImageList = () => import('/page/Admin/imgaeList.vue')const WanHgIndex = () => import('/page/WanhG/index.vue'在Windows内进行build不会报错...原创 2018-11-13 19:53:30 · 3228 阅读 · 1 评论 -
vscode 保存自动 格式化eslint 代码
在网上找了很多种方法,大多都没有成功 一下是一种成功的 配置方法:First, you need to install the ESLint extension in the VS code.This extension uses the ESLint library.If you haven’t installed ESLint either locally or globally d...转载 2018-11-16 13:42:30 · 997 阅读 · 0 评论 -
VUE如何更新父组件绑定值
这个问题花了1天时间才搞明白,所以有必要记录下。这段时间使用vue,引入elementui中的步骤条组件,每一个步骤对应到一个组件页面。在步骤里点击下一步,因此需要更新父组件的active的值: <div class="newdeploy"> <keep-alive> <router-view :active.sync = "act...原创 2018-11-22 15:17:42 · 464 阅读 · 0 评论