更新记录
1.0.0(2023-10-22) 下载此版本
暂无更新
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.8.0 app-vue | √ | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
√ | √ | √ | √ |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
使用方法
插件内使用内置弹窗特效:
uni-popup
下载方式:
https://ext.dcloud.net.cn/plugin?name=uni-popup
官方文档:
https://uniapp.dcloud.net.cn/component/uniui/uni-popup.html#%E4%BB%8B%E7%BB%8D
<template>
<view class="content">
<button @click="login_zheshow">登录</button>
<btnlogin :zheshow='zheshow' />
</view>
</template>
<script>
import btnlogin from '@/components/butlogin';
export default {
components:{
btnlogin
},
data() {
return {
zheshow:false, // 控制弹窗显示隐藏
}
},
methods: {
login_zheshow(){
this.zheshow = !this.zheshow
},
loset(Logon_Credentials){
console.log(Logon_Credentials,'登录信息')
}
}
}
</script>