DemoAlertTonal.vue
1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
<div class="demo-space-y">
<VAlert
variant="tonal"
color="primary"
>
Maecenas nec odio et ante tincidunt tempus. Sed mollis, eros et ultrices tempus.
</VAlert>
<VAlert
variant="tonal"
color="secondary"
>
Nullam tincidunt adipiscing enim. In consectetuer turpis ut velit.
</VAlert>
<VAlert
variant="tonal"
color="success"
>
Vestibulum ullamcorper mauris at ligula. Nulla porta dolor.
</VAlert>
<VAlert
variant="tonal"
color="info"
>
Praesent blandit laoreet nibh. Praesent nonummy mi in odio. Phasellus tempus. Mauris turpis nunc.
</VAlert>
<VAlert
variant="tonal"
color="warning"
>
Marzipan topping croissant cake sweet roll ice cream soufflé chocolate. Jelly beans chupa chups tootsie roll biscuit.
</VAlert>
<VAlert
variant="tonal"
color="error"
>
Marzipan topping croissant cake sweet roll ice cream soufflé chocolate. Jelly beans chupa chups tootsie roll biscuit.
</VAlert>
</div>
</template>