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