Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 603 Bytes

README.md

File metadata and controls

25 lines (24 loc) · 603 Bytes

weaapp-Modal-components

带动画的微信小程序弹窗组件

组件效果

组件使用

在页面json配置文件中引入

"usingComponents": {
     "Dialog":"../../components/Dialog/Dialog"
 },

在页面wxml中引入组件

<Dialog id="userModal"></Dialog>

在页面onReady生命周期中获取组件实例

this.userModal = this.selectComponent("#userModal");

调用组件方法

this.userModal.open();
this.userModal.close();