Skip to content

useMessage

Used for conveniently calling the MessageBox dialog component.

Alert Dialog

Alert dialog only has a confirm button, used for strong reminders.

html
<wd-message-box></wd-message-box>
<wd-button @click="alert">alert</wd-button>
ts
import { useMessage } from '@/uni_modules/wot-design-uni'
const message = useMessage()

function alert() {
  message.alert('Operation successful')
}

Confirm Dialog

Used to prompt user operations.

html
<wd-message-box />
<wd-button @click="confirm">confirm</wd-button>
ts
import { useMessage } from '@/uni_modules/wot-design-uni'
const message = useMessage()

function confirm() {
  message
    .confirm({
      msg: 'Prompt text',
      title: 'Title'
    })
    .then(() => {
      console.log('Clicked confirm button')
    })
    .catch(() => {
      console.log('Clicked cancel button')
    })
}

Prompt Dialog

Prompt will display an input box and can perform input validation.

html
<wd-message-box />
<wd-button @click="prompt">prompt</wd-button>
ts
import { useMessage } from '@/uni_modules/wot-design-uni'
const message = useMessage()

function prompt() {
  message
    .prompt({
      title: 'Please enter email',
      inputPattern: /.+@.+\..+/i,
      inputError: 'Invalid email format'
    })
    .then((resp) => {
      console.log(resp)
    })
    .catch((error) => {
      console.log(error)
    })
}

API

Methods

Method NameDescriptionParameters
showShow dialogoptions
alertShow Alert dialogoptions
confirmShow Confirm dialogoptions
promptShow Prompt dialogoptions
closeClose dialog-

Options

ParameterDescriptionTypeAccepted ValuesDefault
titleTitlestring--
msgMessage textstring--
typeDialog typestringalert / confirm / promptalert
closeOnClickModalWhether to support closing by clicking the maskboolean-true
inputTypeInput box type when type is promptstring-text
inputValueInitial value of input box when type is promptstring / number--
inputPlaceholderInput box placeholder when type is promptstring-Please enter content
inputPatternInput box regex validation when type is promptRegExp--
inputValidateInput box validation function when type is promptfunction--
inputErrorError prompt text when input box validation fails when type is promptstring-Invalid input data
confirmButtonTextConfirm button textstring-Confirm
cancelButtonTextCancel button textstring-Cancel
zIndexDialog layer levelnumber-99
selectorUnique identifierstring-''

Released under the MIT License.

Released under the MIT License.