summaryrefslogtreecommitdiff
path: root/docs/guide/components/alerts/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guide/components/alerts/index.md')
-rw-r--r--docs/guide/components/alerts/index.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/guide/components/alerts/index.md b/docs/guide/components/alerts/index.md
new file mode 100644
index 00000000..9273f8e2
--- /dev/null
+++ b/docs/guide/components/alerts/index.md
@@ -0,0 +1,12 @@
+# Alerts
+An alert is an inline message that contains a short description that a user cannot manually dismiss. With exception to the error message on the login page, alerts are not triggered by user action. Success and error notifications based on user actions are created using a toast component.
+
+[Learn more about Bootstrap-vue alert options](https://bootstrap-vue.js.org/docs/components/alert)
+
+![Alert examples](./alert.png)
+
+```vue
+<alert show variant="warning">This is a warning message</alert>
+<alert show variant="danger">This is an error message</alert>
+<alert show variant="info">This is an info message</alert>
+``` \ No newline at end of file