摘要:
全局设置网络超时 axios.defaults.timeout = 30000; 单独对某个请求设置网络超时 let timeout = parseInt(paramsTimeout); this.$http.post(url, params, {timeout: timeout}) .then(r 阅读全文
摘要:
Sass @mixin 与 @include @mixin 指令允许我们定义一个可以在整个样式表中重复使用的样式。 @include 指令可以将混入(mixin)引入到文档中。 @mixin important-text { color: red; font-size: 25px; font-wei 阅读全文
摘要:
1,在选择器前面加个Id选择器来限制 <template> <div id="wrapper"> </div></template><style>#warp .el-dialog{ width:800px}</style>2,使用/deep/ 在vue中,我们为了避免父组件的样式影响到子组件的样式, 阅读全文
摘要:
数组更新注意事项 Vue 包含一组观察数组的变异方法,所以它们也将会触发视图更新。这些方法如下: push() pop() shift() unshift() splice() sort() reverse() 由于 JavaScript 的限制,Vue 不能检测以下变动的数组: 当你利用索引直接设 阅读全文
摘要:
$ git fetch 远程跟踪分支已更新,需要将这些更新取回本地 $ git branch -a 列出所有分支 git checkout -b dev origin/dev 作用是checkout远程的dev分支,在本地起名为dev分支,并切换到本地的dev分支 阅读全文
摘要:
如果你使用的是 Vue CLI 2,请设置并更新 config/index.js 内的 devtool 属性: devtool: 'source-map', 如果你使用的是 Vue CLI 3,请设置并更新 vue.config.js 内的 devtool 属性: module.exports = 阅读全文
摘要:
1. this.$http.post('/proxy/eventMonitorLog/cancelEventMonitorByCode', { "wardCode": this.$store.getters.env().wardCode }).then(response=>{ }).catch(er 阅读全文
摘要:
PortalVue包含两个组件,portal组件和portal-target组件,他允许你将portal组件中的内容转至portal-target组件所在的地方. <portal to="title">标题</portal> <div class='page-header__title'> <por 阅读全文