diff --git a/README.md b/README.md
index 214989f..de525e3 100644
--- a/README.md
+++ b/README.md
@@ -275,6 +275,12 @@ toast("Persistent toast", { timeout: false })
app.use(Toast, { timeout: 2000 });
```
+### Using unsafe HTML
+```js
+toast("I am Toast", { allowUnsafeHtml: true });
+```
+> Note: This can lead to Cross-Site Scripting (XSS) attacks. If you are certain the content passed to `v-html` is sanitized HTML you can use `allowUnsafeHtml`.
+
### Using a custom component
Passing strings as the toast content is not enough? You can render anything inside the toast using custom components! Vue Toastification accepts both Vue Components and JSX templates as parameters.
diff --git a/src/components/VtToast.vue b/src/components/VtToast.vue
index ac6fc1b..a7645b0 100644
--- a/src/components/VtToast.vue
+++ b/src/components/VtToast.vue
@@ -1,11 +1,21 @@