13 lines
474 B
Vue
13 lines
474 B
Vue
<template>
|
|
<div class="vp-raw flex flex-col">
|
|
<Alert type="info" :icon="false" class="mb-2">Info</Alert>
|
|
<Alert title="WARNING" type="warning" :icon="false" class="mb-2">Warning</Alert>
|
|
<Alert type="danger" :icon="false" class="mb-2">Danger</Alert>
|
|
<Alert type="dark" :icon="false" class="mb-2">Dark</Alert>
|
|
<Alert type="success" :icon="false">Success</Alert>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { Alert } from '../../../../src/index'
|
|
</script>
|