李晓亮 d41858206f a77 | 1 year ago | |
---|---|---|
.. | ||
components | 1 year ago | |
changelog.md | 1 year ago | |
package.json | 1 year ago | |
readme.md | 1 year ago |
生成朋友圈日记海报 组件,组件使用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
}
}
}