refactor: Alert component refactoring (#195)

This commit is contained in:
Ilya Artamonov
2023-09-15 16:20:12 +03:00
committed by GitHub
parent 46c08239c3
commit 34cf4062e8
11 changed files with 329 additions and 364 deletions

View File

@@ -1,10 +1,10 @@
<template>
<div class="vp-raw flex flex-col">
<Alert type="info" closable class="mb-2">Info</Alert>
<Alert type="warning" closable class="mb-2">Warning</Alert>
<Alert type="danger" closable class="mb-2">Danger</Alert>
<Alert type="dark" closable class="mb-2">Dark</Alert>
<Alert type="success" closable>Success</Alert>
<Alert type="info" closable icon class="mb-2">Info</Alert>
<Alert type="warning" closable icon class="mb-2">Warning</Alert>
<Alert type="danger" closable icon class="mb-2">Danger</Alert>
<Alert type="dark" closable icon class="mb-2">Dark</Alert>
<Alert type="success" closable icon>Success</Alert>
</div>
</template>
<script setup>