# 弹窗 prompt

# 导入模块

import prompt from '@system.prompt'

# prompt.showToast(OBJECT)

显示 Toast。

  • 参数
参数名 类型 必填 说明
message string 显示的文本信息。
duration number 0 为短时,1 为长时,默认 0
  • 示例
prompt.showToast({
  message: 'Hello World'
});