diff --git a/components/lib/toast/Toast.d.ts b/components/lib/toast/Toast.d.ts index 9a012c6d1..ee6289c14 100755 --- a/components/lib/toast/Toast.d.ts +++ b/components/lib/toast/Toast.d.ts @@ -29,6 +29,10 @@ export interface ToastPassThroughOptions { * Uses to pass attributes to the root's DOM element. */ root?: ToastPassThroughOptionType; + /** + * Uses to pass attributes to the message's DOM element. + */ + message?: ToastPassThroughOptionType; /** * Uses to pass attributes to the container's DOM element. */ diff --git a/components/lib/toast/Toast.vue b/components/lib/toast/Toast.vue index 15d642724..3077c7867 100755 --- a/components/lib/toast/Toast.vue +++ b/components/lib/toast/Toast.vue @@ -1,7 +1,7 @@