<script setup lang="ts">
import { Alert } from '@lite-space/ui'
</script>
<template>
<Alert icon="i-heroicons:at-symbol-16-solid" message="Heads up!" description="You can add components to your app using the cli." />
</template>
可关闭的警告提示
显示关闭按钮,点击可关闭警告提示。
Heads up!
You can add components to your app using the cli.
<script setup lang="ts">
import { Alert } from '@lite-space/ui'
</script>
<template>
<Alert
icon="i-heroicons:at-symbol-16-solid"
message="Heads up!"
description="You can add components to your app using the cli."
closable
/>
</template>