更新记录
1.0.0(2021-08-22) 下载此版本
1.0.0 上传组件
平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | - | - | - | - | - | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
- | - | - | - | - | - | - | - | - | - | - |
zetank-Dynamic-poster
生成朋友圈日记海报 组件,组件使用uview,使用前请自己安装插件uview
安装
下载组件到项目即可,本组件符合easycom规范
使用
<button @click="popup">显示海报</button>
<uni-popup ref="popup" type="center">
<view class="center_poter" style="margin: 0 auto;" v-if="postershow">
<zetank-Dynamic-poster text="内容" img='' name='' avatarurl="" data="" url="" title="标题"></zetank-Dynamic-poster>
</view>
</uni-popup>
export default {
data() {
return {
postershow:false,
}
},
methods: {
popup(){
this.$refs.popup.open()
this.postershow=true
}
}
}