更新记录
1.0.0(2023-10-22) 下载此版本
暂无更新
平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | × | - | - | √ | × | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | - | √ | √ | √ | √ |
使用方法
插件内使用内置弹窗特效:
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>