purityselect_admin/resources/js/views/demos/components/alert/DemoAlertBasic.vue
2024-10-25 19:58:19 +05:00

15 lines
269 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
>
Alert content
</VAlert>
</div>
</template>