summaryrefslogtreecommitdiff
path: root/docs/.vuepress/components/BmcAlerts.vue
blob: a0c9503443c19f0ac46ad49e80e3e66dab9bf630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
    <div>
        <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>
    </div>
</template>

<script>

export default {
    name: 'BmcAlerts',

}
</script>