简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
vue项目,h5登录页面,手机上键盘弹起把背景图也顶起来了。解决办法
.user-container{ position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100%;background: url("../../static/imgs/bgi.png") no-repeat;background-size:cover;}.form {position: relative...
关于iview Select下拉框的可输入可下拉选择框的使用小坑
最近在写一个vue+iview的项目,遇见的问题,我选中了下拉框的值,但是再去点下拉框的时候就只剩刚才选中的数据了,我觉着应该是插件把刚才选中的数据当做的搜索条件,所以目前所做的操作就是在进行添加和编辑操作的时候手动把这个值给赋为空值。见代码:模板代码,filterable属性是让下拉框可输入可下拉。<FormItem label="你好" prop="
vue store存储commit 和dispatch
this.$store.commit('toShowLoginDialog', true);this.$store.dispatch('toShowLoginDialog',false) 主要区别是:dispatch:含有异步操作,例如向后台提交数据,写法: this.$store.dispatch('mutations方法名',值)commit:同步操作,写法:this....
到底了