docs: update ready components pages

This commit is contained in:
Alexandr
2022-07-25 14:22:53 +03:00
parent f70aff0165
commit 6117a0ffaf
82 changed files with 100 additions and 35 deletions

View File

@@ -0,0 +1,12 @@
<template>
<div class="vp-raw flex flex-col">
<Alert type="info" border class="mb-2">Info</Alert>
<Alert type="warning" border class="mb-2">Warning</Alert>
<Alert type="danger" border class="mb-2">Danger</Alert>
<Alert type="dark" border class="mb-2">Dark</Alert>
<Alert type="success" border>Success</Alert>
</div>
</template>
<script setup>
import { Alert } from '../../../../src/index'
</script>