> For the complete documentation index, see [llms.txt](https://smwb-tech.gitbook.io/vue-flash-message/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://smwb-tech.gitbook.io/vue-flash-message/raw-html.md).

# Raw HTML

You can pass raw html to render it in flash message block

**Example:**

```javascript
this.flashMessage.show({
    html: '<table>...</table>',
	clickable: true,
	time: 10000,
	blockClass: 'custom_msg'
});
```
