Skip to content

MessageBox 1.3.10

A dialog box that pops up, commonly used for message prompts, message confirmation, etc., supports function calls.

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>
typescript
import { useMessage } from '@/uni_modules/wot-design-uni'
const message = useMessage()

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

Alert dialog with title.

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

function alert() {
  message.alert({
    msg: 'Prompt text',
    title: 'Title'
  })
}

If the content text is too long, the dialog box height will not increase, but will show a scrollbar instead.

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

function alert() {
  message.alert({
    msg: 'The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text is for demonstration The above text',
    title: 'Title'
  })
}

Confirm Dialog

Used to prompt user operations.

html
<wd-message-box />
<wd-button @click="confirm">confirm</wd-button>
typescript
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>
typescript
import { useMessage } from '@/uni_modules/wot-design-uni'
const message = useMessage()

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

Slots

If the provided dialog content does not meet requirements, you can use slots to customize dialog content. You can use multiple MessageBoxes in one page by specifying a unique identifier selector, useMessage(selector) will return a component instance with the specified selector.

html
<wd-message-box selector="wd-message-box-slot">
  <wd-rate custom-class="custom-rate-class" v-model="rate" />
</wd-message-box>

<wd-button @click="withSlot">custom</wd-button>
typescript
import { useMessage } from '@/uni_modules/wot-design-uni'
const rate = ref<number>(1)
const message = useMessage('wd-message-box-slot')

function withSlot() {
  message
    .confirm({
      title: 'Rating'
    })
    .then(() => {
      message.alert(`Your rating is: ${rate.value} points`)
    })
    .catch((error) => {
      console.log(error)
    })
}
scss
:deep(.custom-rate-class) {
  display: block;
  height: 22px;
}

Pre-confirmation Processing

Set the beforeConfirm function, which will be executed after the user selects an image and clicks confirm. It receives { resolve }, allowing developers to process before confirmation and inform the component whether to confirm through the resolve function. resolve accepts 1 boolean value, resolve(true) indicates the option is approved, resolve(false) indicates the option is not approved, and when not approved, the confirmation operation will not be completed.

html
<wd-toast />
<wd-message-box />
<wd-button @click="beforeConfirm">beforeConfirm</wd-button>
typescript
import { useMessage, useToast } from '@/uni_modules/wot-design-uni'
const message = useMessage()
const toast = useToast()

function beforeConfirm() {
  message
    .confirm({
      msg: 'Confirm deletion',
      title: 'Prompt',
      beforeConfirm: ({ resolve }) => {
        toast.loading('Deleting...')
        setTimeout(() => {
          toast.close()
          resolve(true)
          toast.success('Deleted successfully')
        }, 2000)
      }
    })
    .then(() => {})
    .catch((error) => {
      console.log(error)
    })
}

Custom Operation Buttons 1.5.0

You can customize the style of operation buttons through the button properties cancel-button-props and confirm-button-props. For specific details, refer to Button Attributes.

html
<wd-message-box></wd-message-box>
<wd-button @click="withButtonProps">Custom Buttons</wd-button>

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
v-model:visibleWhether to display dialog boxboolean-false-
titleDialog titlestring---
msgDialog contentstring---
show-cancel-buttonWhether to show cancel buttonboolean-true-
show-confirm-buttonWhether to show confirm buttonboolean-true-
cancel-button-textCancel button textstring-Cancel-
confirm-button-textConfirm button textstring-Confirm-
cancel-button-propsCancel button propertiesobject-{}1.5.0
confirm-button-propsConfirm button propertiesobject-{}1.5.0
close-on-click-modalWhether to close when clicking modalboolean-true-
before-confirmFunction executed before confirmationfunction({ resolve })---
selectorComponent unique identifierstring-wd-message-box-

Events

Event NameDescriptionParametersVersion
confirmTriggered when clicking confirm button--
cancelTriggered when clicking cancel button--
closeTriggered when closing dialog box--

Slots

NameDescriptionVersion
defaultCustom dialog content-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.