Files
panel/resources/js/views/demos/components/alert/DemoAlertBasic.vue

14 lines
260 B
Vue
Raw Normal View History

2025-08-04 16:33:07 +03:30
<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>