51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#vue路由传参
Vue路由拦截
router.beforeEach((to,from,next)=>{//拦截指定路由if(to.path==='/home'){//todo}else{scrollTo(0,0);next();}}) ...
代码星球
·
2021-01-09
Vue
路由
拦截
mpvue中小程序版本更新
在App.vue中onLaunch(){if(wx.canIUse('getUpdateManager')){constupdateManager=wx.getUpdateManager()updateManager.onCheckForUpdate(function(res){if(res.hasUpdate){up...
代码星球
·
2021-01-09
mpvue
中小
程序
版本
更新
mpvue中小程序swiper阻止手动滑动
<swiper><swiper-itemv-for="(item,index)in3":key="index"><divcatchtouchmove="forbidMove"></div></swipet-item></swiper>forbidM...
代码星球
·
2021-01-09
mpvue
中小
程序
swiper
阻止
mpvue 小程序获取用户信息
<buttonopen-type="getUserInfo"@getuserinfo="getUserInfo">登录</button>methods:{getUserInfo:function(e){ console.log(e)wx.setStorageSync("nickname",e...
代码星球
·
2021-01-09
mpvue
程序
获取
用户
信息
Vue运行后出现5位数随机端口号
npminstallportfinder@1.0.21 ...
代码星球
·
2021-01-09
Vue
运行
出现
5位数
随机
vue项目打包后背景图路径多了/css/static
在build/utils.js文件中添加publicPath:'../../'if(options.extract){returnExtractTextPlugin.extract({use:loaders,fallback:'vue-style-loader',publicPath:'../../'})}else{&...
代码星球
·
2021-01-09
vue
项目
打包
背景
路径
vue图片懒加载使用本地图片
Vue.use(Lazyload,{error:require('./assets/img/noimg.jpg')}) ...
代码星球
·
2021-01-09
图片
vue
加载
使用
本地
在Vue中使用better-scroll实现横向滚动和竖向滚动
npminstallbetter-scroll--save<template><divclass="box"><divclass="person-wrap"ref="personWrap"><ulclass="person-list"ref="li1"><licla...
代码星球
·
2021-01-09
滚动
Vue
使用
better-scroll
实现
Vue实现动画的几种方式
1. vue内置组件transition 元素出现和消失都呈现动画<!--将要使用动画的内容放在transition里即可--><transitionname="fade"><divv-show="show"></div></transition>...
代码星球
·
2021-01-09
Vue
实现
画的
几种
方式
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
mpvue
使用
vant-weapp
vue无法检测数组的变动
由于JavaScript的限制,Vue 不能检测以下数组的变动:varvm=newVue({data:{items:['a','b','c']}})//当你利用索引直接设置一个数组项时,例如:vm.items[indexOfItem]=newValue//当你修改数组的长度时,例如:vm.items.leng...
代码星球
·
2021-01-09
vue
无法
检测
数组
变动
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会作为变量一直向上级词法作用域查找,直至找到为止...
代码星球
·
2021-01-09
TypeError
vue
报错
Cannot
read
vue绑定style使用需要添加浏览器引擎前缀的 CSS 属性
当v-bind:style使用需要添加浏览器引擎前缀的CSS属性时,如transform,Vue.js会自动侦测并添加相应的前缀。...
代码星球
·
2021-01-09
vue
绑定
style
使用
需要
vue运行报错Error: listen EADDRNOTAVAIL 192.168.1.105:8080
ip地址错误 如果用的是wifi则查看无线局域网ipv4 在config/index.js中//配置自己的ip地址host:'192.168.1.106',//canbeoverwrittenbyprocess.env.HOST ...
代码星球
·
2021-01-08
vue
运行
报错
Error
listen
vue使用lrz插件压缩图片
npm安装并导入npmilrz-S<template><div><div@click.stop="addPic"ref="upload"class="btn"><inputtype="file"accept="image/*"@change="onFileChange"styl...
代码星球
·
2021-01-08
vue
使用
lrz
插件
压缩
首页
上一页
...
39
40
41
42
43
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他