提交 371868d2 编写于 作者: E ester.zhou

Update doc (15364)

Signed-off-by: Nester.zhou <ester.zhou@huawei.com>
上级 20e6046e
......@@ -108,6 +108,11 @@ struct CustomDialogUser {
customStyle: false
})
aboutToDisappear() {
delete this.dialogController,
this.dialogController = undefined
}
onCancel() {
console.info('Callback when the first button is clicked')
}
......@@ -124,7 +129,9 @@ struct CustomDialogUser {
Column() {
Button(this.inputValue)
.onClick(() => {
this.dialogController.open()
if (this.dialogController != undefined) {
this.dialogController.open()
}
}).backgroundColor(0x317aff)
}.width('100%').margin({ top: 5 })
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册