分类: Vue

37 篇文章

vue项目常用依赖集
【axios】引入 npm install axios -S main.js import axios from 'axios' Vue.prototype.$axios = axios; 【babel-polyfill】引入 为解决es6语法在IE中兼容性问题 IE9+ npm install babel-polyfill 在main.js中配置…
局域网下访问Vue本地项目
package.json "scripts": { "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js --host 自己的ip", "start": "npm run dev", "build": "node build/build.j…
验证码等待时间效果
verBtn(){ this.$message({ message: "验证码已发送,请注意查收", type: 'success' //success/info/warning/error }); this.vercount = 30; this.verdis = true; var vertimer = setInterval(()=>{…
调用接口后端获取不到session参数
问题原因: ajax发送跨域请求,默认不会像后台发送凭证信息,如cookie、http认证或客户端SSl证明等信息. jq-ajax解决方案 $.ajax({ type: "POST", url: "your url", data: {}, xhrFields: {withCredentials: true}, success: function(…
【IE浏览器缓存接口】
针对IE浏览器对接口缓存,在接口每次请求时加入时间戳,是每次请求的值不一样 this.$axios({ methods:'get', url:'', params:{ Date:Date.parse(new Date()) //在每个接口上加入时间戳 } })
【vue绑定回车事件】
@keyup.enter 表单获取聚点后自动激活回车事件的监听 <input type="password" @keyup.enter="enterBtn" class="oneInput" v-model="password" placeholder="请输入密码" >
【监听滚共高度】
mounted(){ // 监听(绑定)滚轮滚动事件 window.addEventListener('scroll', this.handleScroll, true); } destroyed(){ // 离开页面清除(移除)滚轮滚动事件 window.removeEventListener('scroll', this.handleScrol…