打赏
摘要: 控制台输出: extends只能继承一个mixins可以多个 阅读全文
posted @ 2018-06-18 18:38 孟繁贵 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 匹配好路径 阅读全文
posted @ 2018-06-18 18:24 孟繁贵 阅读(12992) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000012327982 阅读全文
posted @ 2018-06-18 15:12 孟繁贵 阅读(161) 评论(0) 推荐(0) 编辑
摘要: this.$ajax.post('', {operate: type, ids: this.data.id.toString(), data_type: 'ips'}, {timeout: 60000}) .then(res => { if (res.status) { this.$message({ mes... 阅读全文
posted @ 2018-06-18 14:54 孟繁贵 阅读(21098) 评论(0) 推荐(0) 编辑
摘要: //同时发起多个请求时的处理 axios.all([get1(), get2()]) .then(axios.spread(function (res1, res2) { // 只有两个请求都完成才会成功,否则会被catch捕获 })); 阅读全文
posted @ 2018-06-18 14:42 孟繁贵 阅读(2907) 评论(0) 推荐(0) 编辑
摘要: data() { return { msg: 'mfg' } }, {{`${msg}`}} {{msg}} 阅读全文
posted @ 2018-06-18 12:12 孟繁贵 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 用来缓存组件,避免多次加载相应的组件,减少性能消耗. 阅读全文
posted @ 2018-06-18 11:13 孟繁贵 阅读(152) 评论(0) 推荐(0) 编辑
TOP