更新记录
1.0.0(2023-07-25) 下载此版本
1.0.0
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
× | × | × | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
示例代码
使用方法
-
下载安装配置uview组件库,该插件基于uview的upicker组件
-
页面中直接引入标签使用
<barry-picker ref="dialog" @get-address="getAddress"></barry-picker>
-
方法使用
// 打开地址弹框 open() { this.$refs.dialog.show = true }, // 获取地址 getAddress(e) { console.log('选择的地址是', e); this.location = e }
-
示例代码
<template> <view class="container"> <text @click="open">地址:{{location}}</text> <barry-picker ref="dialog" @get-address="getAddress"></barry-picker> </view> </template> <script> export default { data() { return { location: '', }; }, methods: { open() { this.$refs.dialog.show = true }, getAddress(e) { console.log('选择的地址是', e); this.location = e } }, } </script> <style lang="scss" scoped> .container { padding: 20rpx; } </style>
-