Aymkdn / v-snackbars

Display the `v-snackbar` (from Vuetify) with a stack display

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ability to use HTML in the message

b-maslennikov opened this issue · comments

Hi
It will allow to have multiple line snackbar (by using br) + style the message with bold/italic/etc

You can already do it:

<template v-slot:default="{ message }">
   <span v-html="message"></span>
</template>

Check the demo at https://codesandbox.io/s/v-snackbars-demo-forked-je27y?file=/src/App.vue:200-305

Hi
I completely forgot about the slots. It makes sense then.
Thank you.