New to Kendo UI for VueStart a free 30-day trial

Represents the props of the Kendo UI for Vue Notification component.

Definition

Package:@progress/kendo-vue-notification

Properties

Defines the aria-label attribute of the Notification component. Defaults to undefined.

Specifies if the Notification will require a user action to hide. If the property is set to true, the Notification renders a Close button. If the property is set to object, the Notification renders a Close button by extending the default props with the provided object.

The possible values are:

  • (Default) false
  • true
  • { title: 'Hide', ... }

dir?

string

The dir HTML attribute.

onClose?

(event: NotificationEvent) => void

The close event which will be triggered when the Close button is clicked.

Parameters:eventNotificationEvent

Configures the themeColor of the Notification.

type?

{ style?: "none" | "base" | "primary" | "secondary" | "tertiary" | "success" | "error" | "warning" | "info" | "inverse"; icon?: boolean }

The Notification type (see example).

The possible values are:

    • style: 'none'|'base'|'primary'|'secondary'|'tertiary'|'success'|'error'|'warning'|'info'|'inverse'. Defaults to none.
  • icon?: 'true'|'false'. Defaults to true.