#vue路由传参

Vue路由拦截

router.beforeEach((to,from,next)=>{//拦截指定路由if(to.path==='/home'){//todo}else{scrollTo(0,0);next();}}) ...
代码星球 ·2021-01-09

mpvue中小程序版本更新

在App.vue中onLaunch(){if(wx.canIUse('getUpdateManager')){constupdateManager=wx.getUpdateManager()updateManager.onCheckForUpdate(function(res){if(res.hasUpdate){up...

mpvue中小程序swiper阻止手动滑动

<swiper><swiper-itemv-for="(item,index)in3":key="index"><divcatchtouchmove="forbidMove"></div></swipet-item></swiper>forbidM...

mpvue 小程序获取用户信息

<buttonopen-type="getUserInfo"@getuserinfo="getUserInfo">登录</button>methods:{getUserInfo:function(e){   console.log(e)wx.setStorageSync("nickname",e...

Vue运行后出现5位数随机端口号

npminstallportfinder@1.0.21 ...

vue项目打包后背景图路径多了/css/static

在build/utils.js文件中添加publicPath:'../../'if(options.extract){returnExtractTextPlugin.extract({use:loaders,fallback:'vue-style-loader',publicPath:'../../'})}else{&...

vue图片懒加载使用本地图片

Vue.use(Lazyload,{error:require('./assets/img/noimg.jpg')}) ...

在Vue中使用better-scroll实现横向滚动和竖向滚动

npminstallbetter-scroll--save<template><divclass="box"><divclass="person-wrap"ref="personWrap"><ulclass="person-list"ref="li1"><licla...

Vue实现动画的几种方式

1. vue内置组件transition  元素出现和消失都呈现动画<!--将要使用动画的内容放在transition里即可--><transitionname="fade"><divv-show="show"></div></transition>...

mpvue中使用vant-weapp

安装#通过npm安装npmivant-weapp-S--production#通过yarn安装yarnaddvant-weapp--production#直接通过git下载VantWeapp源代码,并将dist或lib目录拷贝到自己的项目中gitclonehttps://github.com/youzan/vant-w...
代码星球 ·2021-01-09

vue无法检测数组的变动

由于JavaScript的限制,Vue 不能检测以下数组的变动:varvm=newVue({data:{items:['a','b','c']}})//当你利用索引直接设置一个数组项时,例如:vm.items[indexOfItem]=newValue//当你修改数组的长度时,例如:vm.items.leng...

vue报错TypeError: Cannot read property of undefined 或 Uncaught TypeError: this.myMethod is not a function

不要在选项属性或回调上使用箭头函数//比如created:()=>console.log(this.a)vm.$watch('a',newValue=>this.myMethod())因为箭头函数并没有this,this会作为变量一直向上级词法作用域查找,直至找到为止...

vue绑定style使用需要添加浏览器引擎前缀的 CSS 属性

当v-bind:style使用需要添加浏览器引擎前缀的CSS属性时,如transform,Vue.js会自动侦测并添加相应的前缀。...

vue运行报错Error: listen EADDRNOTAVAIL 192.168.1.105:8080

ip地址错误 如果用的是wifi则查看无线局域网ipv4 在config/index.js中//配置自己的ip地址host:'192.168.1.106',//canbeoverwrittenbyprocess.env.HOST ...

vue使用lrz插件压缩图片

npm安装并导入npmilrz-S<template><div><div@click.stop="addPic"ref="upload"class="btn"><inputtype="file"accept="image/*"@change="onFileChange"styl...
首页上一页...3940414243...下一页尾页