14 lines
260 B
Vue
14 lines
260 B
Vue
|
|
<template>
|
||
|
|
<div class="demo-space-y">
|
||
|
|
<VAlert color="primary">
|
||
|
|
Good Morning! Start your day with some alerts.
|
||
|
|
</VAlert>
|
||
|
|
<VAlert
|
||
|
|
title="Alert Title"
|
||
|
|
type="error"
|
||
|
|
closable
|
||
|
|
text="Alert Text"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|