vux
vux copied to clipboard
Mobile UI Components based on Vue & WeUI
### VUX version 2.9.2 ### OS/Browsers version win10;chrome版本 69.0.3497.100(正式版本) (64 位) ### Vue version 2.5.18-beta.0 ### Code ```html import { PopupPicker, Group, Cell, XInput } from 'vux' import apis from...
There is a bug on the confirm component. If I bind a variable `false` as v-model to the `Confirm` component, the variable will be initialized `undefined` instead of `false`, so...
### VUX version 2.9.2 ### OS/Browsers version windows ### Vue version 2.5.20 ### Code ```html data(){ form:{ input:'' } } ``` ### Steps to reproduce 通过异步请求后改变this.form.input后 会出发@on-focus事件和blur事件,导致页面跳动 ### What is...
当挂载popover组件的元素存在定位的时候, popover组件的content插槽的内容无法显示在预期的位置, 看了作者写的源码, 获取的是该组件default插槽的内容相对"视窗"的偏移值, 依靠这个"视窗"偏移去计算content内容的''文档''偏移值,似乎不甚合理.我也尝试着将该组件内的getBoundingClientRect().top 换成offsetTop后, 内容就显示在预期的位置了. 代码如下: ``` hello world 更多 hello world 更多 import { Popover } from 'vux' export default { name: 'app', methods: { }, components:...
实现三级联动 调用接口获取第二联的地名数据然后添加到地名数组中 事件无限触发一直添加数据
按照文档正确引入WechatPlugin插件后,在组件中使用微信js-sdk时,this.$wechat对象上没有onHistoryBack这个方法
webpack配置 externals:{ 'vux': { commonjs: 'vux', commonjs2: 'vux', } 组件内使用: import { XButton } from 'vux' button组件还是被webpack打包了
Please makes sure the items are checked before submitting your PR, thank you! * [ ] `Rebase` before creating a PR to keep commit history clear. * [ ] `Only...
### VUX version 2.9.2 ### OS/Browsers version ios,google ### Vue version 2.6.10 ### Code ```html changeAccount (val) { this.loginData.account = val; if (val.length === 4) { let value = `(${val.substr(0,...